Romanov_E.V._CourseWork_Vet.../VeterinaryClinicBusinessLogic/OfficePackage/HelperModels/ExcelCellParameters.cs
10Г Егор Романов 904785dbd1 Something done
2023-04-07 14:47:26 +04:00

20 lines
591 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VeterinaryClinicBusinessLogic.OfficePackage.HelperEnums;
namespace VeterinaryClinicBusinessLogic.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; }
}
}