CourseWork_Hotel/Hotel/HotelBusinessLogic/OfficePackage/HelperModels/PdfInfoHeadwaiter.cs

19 lines
576 B
C#
Raw Normal View History

using HotelContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HotelBusinessLogic.OfficePackage.HelperModels
{
public class PdfInfoHeadwaiter
{
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();
}
}