2024-04-25 23:20:52 +04:00

11 lines
331 B
C#

using MotorPlantContracts.VeiwModels;
namespace MotorPlantBusinessLogic.OfficePackage.HelperModels
{
public class WordInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<EngineViewModel> Engines { get; set; } = new();
}
}