2023-03-24 16:31:56 +04:00
|
|
|
|
namespace FoodOrdersBusinessLogic.OfficePackage.HelperModels.Excel
|
2023-03-10 15:31:58 +04:00
|
|
|
|
{
|
|
|
|
|
public class ExcelMergeParameters
|
|
|
|
|
{
|
|
|
|
|
public string CellFromName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string CellToName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Merge => $"{CellFromName}:{CellToName}";
|
|
|
|
|
}
|
|
|
|
|
}
|