PIbd-21_Alekseev_I.S._Confe.../Confectionery/ConfectioneryBusinessLogic/OfficePackage/HelperModels/ExcelCellParameters.cs
VanyaAlekseev faff28c524 ух
2024-04-28 00:20:34 +04:00

18 lines
472 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; }
}
}