2023-05-26 02:11:24 +04:00
|
|
|
|
namespace CarServiceBusinessLogic.OfficePackage.HelperModels
|
2023-05-25 22:31:46 +04:00
|
|
|
|
{
|
|
|
|
|
public class ExcelMergeParameters
|
|
|
|
|
{
|
|
|
|
|
public string CellFromName { get; set; } = string.Empty;
|
|
|
|
|
public string CellToName { get; set; } = string.Empty;
|
|
|
|
|
public string Merge => $"{CellFromName}:{CellToName}";
|
|
|
|
|
}
|
|
|
|
|
}
|