8 lines
278 B
C#
8 lines
278 B
C#
namespace HotelBusinessLogic.OfficePackage.HelpersModels;
|
|
|
|
public class ExcelMergeParameters
|
|
{
|
|
public string CellFromName { get; set; } = string.Empty;
|
|
public string CellToName { get; set; } = string.Empty;
|
|
public string Merge => $"{CellFromName}:{CellToName}";
|
|
} |