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; }
}