PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopBusinessLogic/OfficePackage/HelperModels/ExcelCellParameters.cs
Arkadiy Radaev 6d165aa782 res4
2024-04-07 10:17:23 +04:00

18 lines
462 B
C#

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