PIbd-23_Bogdanov_D.S._Compu.../ComputerShopBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs
2023-03-26 17:06:05 +04:00

19 lines
547 B
C#

using ComputerShopContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopBusinessLogic.OfficePackage.HelperModels
{
public class PdfInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public DateTime DateFrom { get; set; }
public DateTime DateTo { get; set; }
public List<ReportOrderViewModel> Orders { get; set; } = new();
}
}