2023-04-08 19:57:10 +04:00
|
|
|
|
using BankContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
2023-04-08 22:43:54 +04:00
|
|
|
|
public class PdfInfoClient
|
2023-04-08 19:57:10 +04:00
|
|
|
|
{
|
|
|
|
|
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<ReportConferenceBindingRoomsViewModel> ConferenceBindingRooms { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
}
|