using AircraftPlantBusinessLogic.OfficePackage.HelperEnums; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AircraftPlantBusinessLogic.OfficePackage.HelperModels { /// /// Модель для описания свойств ячейки /// public class ExcelCellParameters { /// /// Название колонки /// public string ColumnName { get; set; } = string.Empty; /// /// Номер строки /// public uint RowIndex { get; set; } /// /// Текст колонки /// public string Text { get; set; } = string.Empty; /// /// Получение ячейки /// public string CellReference => $"{ColumnName}{RowIndex}"; /// /// Стиль ячейки /// public ExcelStyleInfoType StyleInfo { get; set; } } }