PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlantBusinessLogic/OfficePackage/HelperModels/PdfInfoOrdersByDate.cs
2023-05-23 19:15:11 +03:00

19 lines
492 B
C#

using PrecastConcretePlantContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantBusinessLogic.OfficePackage.HelperModels
{
public class PdfInfoOrdersByDate
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportOrdersByDateViewModel> Orders { get; set; } = new();
}
}