10 lines
310 B
C#
10 lines
310 B
C#
|
namespace UniversityBusinessLogics.OfficePackage.HelperModels
|
|||
|
{
|
|||
|
public class ExcelMergeParameters
|
|||
|
{
|
|||
|
public string CellFromName { get; set; } = string.Empty;
|
|||
|
public string CellToName { get; set; } = string.Empty;
|
|||
|
public string Merge => $"{CellFromName}:{CellToName}";
|
|||
|
}
|
|||
|
}
|