using System.Collections.Generic;

namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;

public class ProcessMapPlanFunctionsUpgradeNoloadTemplate : ITemplateParameters
{
    public string SheetName => "Обновление холостого хода";

    public int HeaderRowsCount => 2;

    public string FileName => "ProcessMapPlanFunctionsUpgradeNoloadTemplate.xlsx";

    public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
    {

    };
}