18 lines
514 B
C#
Raw Normal View History

2023-03-22 11:10:23 +03:00
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
{
2023-04-20 01:48:44 +04:00
public class WordPizzaInfo : IDocument
2023-03-22 11:10:23 +03:00
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<PizzaViewModel> Pizzas { get; set; } = new();
}
}