19 lines
560 B
C#
19 lines
560 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VetClinicBusinessLogic.BusinessLogic.OfficePackage.Enums;
|
|
|
|
namespace VetClinicBusinessLogic.BusinessLogic.OfficePackage.Models
|
|
{
|
|
public class ExcelCellParameters
|
|
{
|
|
public string ColumnName { get; set; }
|
|
public uint RowIndex { get; set; }
|
|
public string Text { get; set; }
|
|
public string CellReference => $"{ColumnName}{RowIndex}";
|
|
public ExcelStyleInfoType StyleInfo { get; set; }
|
|
}
|
|
}
|