Romanov_E.V._CourseWork_Vet.../VeterinaryClinicBusinessLogic/OfficePackage/HelperModels/ExcelMergeParameters.cs
10Г Егор Романов 904785dbd1 Something done
2023-04-07 14:47:26 +04:00

16 lines
432 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VeterinaryClinicBusinessLogic.OfficePackage.HelperModels
{
public class ExcelMergeParameters
{
public string CellFromName { get; set; } = string.Empty;
public string CellToName { get; set; } = string.Empty;
public string Merge => $"{CellFromName}:{CellToName}";
}
}