PIbd-22_Aleikin_A.M._Confec.../Confectionery/ConfectioneryBusinessLogic/OfficePackage/HelperModels/WordInfo.cs

19 lines
457 B
C#

using ConfectioneryContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryBusinessLogic.OfficePackage.HelperModels
{
public class WordInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<PastryViewModel> Pastries { get; set; } = new();
}
}