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

17 lines
502 B
C#
Raw Normal View History

2024-06-25 15:22:32 +05:00
using System.Collections.Generic;
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
public class ProcessMapPlanOperationTFOrientationTemplate : ITemplateParameters
{
public string SheetName => "Определение выставление";
public int HeaderRowsCount => 2;
public string FileName => "ProcessMapPlanOperationTFOrientationTemplate.xlsx";
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
{
};
}