2024-06-26 13:01:06 +05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
|
|
|
|
|
2024-06-29 23:32:34 +05:00
|
|
|
public class ProcessMapPlanDamperTemplate : ITemplateParameters
|
2024-06-26 13:01:06 +05:00
|
|
|
{
|
|
|
|
public string SheetName => "Демпфер";
|
|
|
|
|
|
|
|
public int HeaderRowsCount => 2;
|
|
|
|
|
2024-06-29 23:32:34 +05:00
|
|
|
public string FileName => "ProcessMapPlanDamperTemplate.xlsx";
|
2024-06-26 13:01:06 +05:00
|
|
|
|
|
|
|
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
|
|
|
|
{
|
|
|
|
|
|
|
|
};
|
|
|
|
}
|