2024-06-24 16:05:45 +05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
|
|
|
|
|
2024-06-30 00:10:40 +05:00
|
|
|
public class ProcessMapPlanReamingSlideTemplate : ITemplateParameters
|
2024-06-24 16:05:45 +05:00
|
|
|
{
|
|
|
|
public string SheetName => "Проработка слайд";
|
|
|
|
|
|
|
|
public int HeaderRowsCount => 2;
|
|
|
|
|
2024-06-30 00:10:40 +05:00
|
|
|
public string FileName => "ProcessMapPlanReamingSlideTemplate.xlsx";
|
2024-06-24 16:05:45 +05:00
|
|
|
|
|
|
|
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
|
|
|
|
{
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|