using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AircraftPlantBusinessLogic.OfficePackage.HelperModels
{
///
/// Модель для описания объединенных ячеек
///
public class ExcelMergeParameters
{
///
/// Начальная ячейка
///
public string CellFromName { get; set; } = string.Empty;
///
/// Конечная ячейка
///
public string CellToName { get; set; } = string.Empty;
///
/// Получить диапазон объединения ячеек
///
public string Merge => $"{CellFromName}:{CellToName}";
}
}