DD.WellWorkover.Cloud/AsbCloudInfrastructure/Services/ExcelServices/Templates/ProcessMapPlanTemplates/ProcessMapPlanTFOrientationTemplate.cs
2024-06-30 11:17:10 +05:00

17 lines
461 B
C#

using System.Collections.Generic;
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
public class ProcessMapPlanTFOrientationTemplate : ITemplateParameters
{
public string SheetName => "Выставление";
public int HeaderRowsCount => 2;
public string FileName => "ProcessMapPlanTFOrientationTemplate.xlsx";
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
{
};
}