ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarBusinessLogic/OfficePackage/HelperModels/ExcelMergeParameters.cs

11 lines
308 B
C#
Raw Normal View History

2024-04-03 20:34:51 +04:00
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}";
}
}