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

17 lines
462 B
C#

using System.Collections.Generic;
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
public class ProcessMapPlanAutoHoldTFTemplate : ITemplateParameters
{
public string SheetName => "Автоудержание TF";
public int HeaderRowsCount => 2;
public string FileName => "ProcessMapPlanAutoHoldTFTemplate.xlsx";
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
{
};
}