Danil Markov
96a6d6bbf7
Почти сделан pdf (добавил вспомогательный viewmodel так как C# не умеет в кортежи). Нужно доделать pdf с отправкой на почту и навести красоту (стили, валидацию)
16 lines
388 B
C#
16 lines
388 B
C#
namespace UniversityBusinessLogic.OfficePackage.Models
|
|
{
|
|
public class ExcelCellData
|
|
{
|
|
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 uint StyleIndex { get; set; } = 0;
|
|
}
|
|
}
|