using AircraftPlantContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AircraftPlantBusinessLogic.OfficePackage.HelperModels
{
///
/// Модель для передачи данных
/// для создания отчета в Word-файле
///
public class WordInfo
{
///
/// Название файла
///
public string FileName { get; set; } = string.Empty;
///
/// Заголовок
///
public string Title { get; set; } = string.Empty;
///
/// Список изделий
///
public List Planes { get; set; } = new();
}
}