10 lines
313 B
C#
10 lines
313 B
C#
|
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}";
|
|||
|
}
|
|||
|
}
|