DD.WellWorkover.Cloud/AsbCloudInfrastructure/Services/ExcelServices/Templates/ProcessMapPlanTemplates/ProcessMapPlanSectionTemplate.cs

17 lines
466 B
C#

using System.Collections.Generic;
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
public class ProcessMapPlanSectionTemplate : ITemplateParameters
{
public string SheetName => "Конструкция скважины";
public int HeaderRowsCount => 2;
public string FileName => "ProcessMapPlanSectionTemplate.xlsx";
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
{
};
}