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