PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryBusinessLogic/OfficePackage/HelperModels/WordInfo.cs

11 lines
338 B
C#
Raw Normal View History

2024-04-10 15:15:05 +04:00
using ConfectioneryContracts.ViewModels;
namespace ConfectioneryBusinessLogic.OfficePackage.HelperModels
{
public class WordInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
2024-04-24 05:46:48 +04:00
public List<PastryViewModel> Pastries { get; set; } = new();
2024-04-10 15:15:05 +04:00
}
}