29 lines
837 B
C#
29 lines
837 B
C#
|
using BankBusinessLogic.OfficePackage.HelperEnums;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BankBusinessLogic.OfficePackage.HelperModels
|
|||
|
{
|
|||
|
// Информация по ячейке в таблице Excel
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|