10 lines
313 B
C#
Raw Permalink Normal View History

2024-05-11 11:59:11 +04:00
namespace SecuritySystemBusinessLogic.OfficePackage.HelperModels
{
public class ExcelMergeParameters
{
public string CellFromName { get; set; } = string.Empty;
public string CellToName { get; set; } = string.Empty;
public string Merge => $"{CellFromName}:{CellToName}";
}
}