ISEbd-21_KashtanovD.A.FishF.../FishFactory/FishFactoryBusinessLogic/OfficePackage/HelperModels/ExcelCellParameters.cs
2024-04-05 01:59:38 +04:00

14 lines
464 B
C#

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