using System.Collections.Generic;

namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;

public class ProcessMapPlanSlideLoweringBitTemplate : ITemplateParameters
{
    public string SheetName => "Подход к забою в слайде";

    public int HeaderRowsCount => 2;

    public string FileName => "ProcessMapPlanSlideLoweringBitTemplate.xlsx";

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

    };
}