PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopBusinessLogic/OfficePackage/HelperModels/ExcelCellParameters.cs

18 lines
462 B
C#
Raw Normal View History

2024-04-07 10:17:23 +04:00
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; }
}
}