forked from ddrilling/AsbCloudServer
14 lines
271 B
C#
14 lines
271 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates;
|
|
|
|
public interface ITemplateParameters
|
|
{
|
|
string SheetName { get; }
|
|
|
|
int HeaderRowsCount { get; }
|
|
|
|
string FileName { get; }
|
|
|
|
IDictionary<string, Cell> Cells { get; }
|
|
} |