2024-03-14 10:00:14 +05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates;
|
|
|
|
|
|
|
|
public interface ITemplateParameters
|
|
|
|
{
|
2024-07-04 11:02:45 +05:00
|
|
|
string SheetName { get; }
|
2024-03-14 10:00:14 +05:00
|
|
|
|
2024-07-04 11:02:45 +05:00
|
|
|
int HeaderRowsCount { get; }
|
2024-03-14 10:00:14 +05:00
|
|
|
|
2024-07-04 11:02:45 +05:00
|
|
|
string FileName { get; }
|
2024-03-14 10:00:14 +05:00
|
|
|
|
2024-07-04 11:02:45 +05:00
|
|
|
IDictionary<string, Cell> Cells { get; }
|
2024-03-14 10:00:14 +05:00
|
|
|
}
|