PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenBusinessLogic/OfficePackage/HelperModels/WordInfo.cs

19 lines
546 B
C#
Raw Normal View History

2023-05-20 12:11:48 +04:00
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
{
2023-06-19 09:12:18 +04:00
public string FileName = $"C:\\WordReports\\{DateTime.Now.ToString("HH.mm.ss_dd.MM.yyyy")}.docx";
2023-05-20 12:11:48 +04:00
public string Title { get; set; }
2023-06-14 22:47:30 +04:00
public List<ReportCookView> Cooks { get; set; }
public List<ReportOrderView> Orders { get; set; }
2023-05-20 12:11:48 +04:00
}
}