PIbd-23-Yunusov-N.N.-CarRep.../CarRepairShop/CarRepairShopBusinessLogic/OfficePackage/HelperModels/ExcelMergeParameters.cs

10 lines
312 B
C#
Raw Normal View History

2024-04-06 16:29:29 +04:00
namespace CarRepairShopBusinessLogic.OfficePackage.HelperModels
{
public class ExcelMergeParameters
{
public string CellFromName { get; set; } = string.Empty;
public string CellToName { get; set; } = string.Empty;
public string Merge => $"{CellFromName}:{CellToName}";
}
}