PIbd-22_Kamcharova_K.A_Reno.../RenovationWorkBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs

20 lines
553 B
C#
Raw Normal View History

2024-05-19 13:23:06 +04:00
using RenovationWorkContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RenovationWorkBusinessLogic.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<ReportOrdersViewModel> Orders { get; set; } = new();
}
2024-05-25 21:23:11 +04:00
}