PIbd-21_RazubaevSM_Plumbing.../PlumbingRepair/PlumbingRepairBusinessLogic/OfficePackage/HelperModels/ExcelCellParameters.cs
2024-03-23 22:01:27 +04:00

17 lines
473 B
C#

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