12 lines
326 B
C#
12 lines
326 B
C#
using PizzeriaContracts.ViewModels;
|
|
|
|
namespace PizzeriaBusinessLogic.OfficePackage.HelperModels
|
|
{
|
|
public class WordInfo
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string Title { get; set; } = string.Empty;
|
|
public List<PizzaViewModel> Pizzas { get; set; } = new();
|
|
}
|
|
}
|