ISEbd-21_Agliullov.D.A._Con.../ConfectionaryBusinessLogic/OfficePackage/HelperModels/ExcelCellParameters.cs
Данияр Аглиуллов 3d7c2ac7ac Базовые изменения
2023-03-01 16:42:58 +04:00

14 lines
468 B
C#

using ConfectioneryBusinessLogic.OfficePackage.HelperEnums;
namespace ConfectioneryBusinessLogic.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; }
}
}