2023-05-20 03:13:10 +04:00
|
|
|
|
using CaseAccountingBusinessLogic.OfficePackage.HelperEnums;
|
2023-04-08 18:05:46 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2023-05-20 03:13:10 +04:00
|
|
|
|
namespace CaseAccountingBusinessLogic.OfficePackage.HelperModels
|
2023-04-08 18:05:46 +04:00
|
|
|
|
{
|
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|