DD.WellWorkover.Cloud/AsbCloudInfrastructure/Services/ExcelServices/Templates/ITemplateParameters.cs

14 lines
279 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; }
}