PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenBusinessLogic/OfficePackage/HelperModels/WordInfo.cs
2023-06-14 22:47:30 +04:00

19 lines
485 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CanteenContracts.View;
using CanteenContracts.ViewModels;
namespace CanteenBusinessLogic.OfficePackage.HelperModels
{
public class WordInfo
{
public string FileName { get; set; }
public string Title { get; set; }
public List<ReportCookView> Cooks { get; set; }
public List<ReportOrderView> Orders { get; set; }
}
}