forked from ddrilling/AsbCloudServer
18 lines
507 B
C#
18 lines
507 B
C#
using System.Collections.Generic;
|
|
using AsbCloudApp.Data.ProcessMaps;
|
|
|
|
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
|
|
|
|
public class ProcessMapPlanOperationReamingRotorTemplate : ITemplateParameters
|
|
{
|
|
public string SheetName => "Проработка ротор";
|
|
|
|
public int HeaderRowsCount => 2;
|
|
|
|
public string FileName => "ProcessMapPlanOperationReamingRotorTemplate.xlsx";
|
|
|
|
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
|
|
{
|
|
|
|
};
|
|
} |