Coursach/Course/BusinessLogic/OfficePackage/HelperModels/ExcelCellParameters.cs

15 lines
443 B
C#
Raw Normal View History

2024-05-26 23:23:24 +04:00

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