PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaBusinessLogic/OfficePackage/HelperModels/WordPizzaInfo.cs
2023-04-20 01:48:44 +04:00

18 lines
514 B
C#

using PizzeriaBusinessLogic.OfficePackage.HelperEnums;
using PizzeriaContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaBusinessLogic.OfficePackage.HelperModels
{
public class WordPizzaInfo : IDocument
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<PizzaViewModel> Pizzas { get; set; } = new();
}
}