ISEbd-22_Baygulov_A.A._Sush.../SushiBar/SushiBarBusinessLogic/ExcelMergeParameters.cs

9 lines
306 B
C#

namespace SushiBarBusinessLogic.OfficePackage.HelperModels
{
public class ExcelMergeParameters
{
public string CellFromName { get; set; } = string.Empty;
public string CellToName { get; set; } = string.Empty;
public string Merge => $"{CellFromName}:{CellToName}";
}
}