using System.Collections.Generic; namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates; public class ProcessMapPlanSurveyTemplate : ITemplateParameters { public string SheetName => "Запись статического замера"; public int HeaderRowsCount => 2; public string FileName => "ProcessMapPlanSurveyTemplate.xlsx"; public IDictionary<string, Cell> Cells => new Dictionary<string, Cell> { }; }