ISEbd-21_Agliullov.D.A._Con.../ConfectionaryBusinessLogic/OfficePackage/HelperModels/WordInfo.cs
2023-03-08 16:05:07 +04:00

13 lines
403 B
C#

using ConfectioneryContracts.ViewModels;
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();
public List<ShopViewModel> Shops { get; set; } = new();
}
}