12 lines
344 B
C#
12 lines
344 B
C#
using HotelContracts.ViewModels;
|
|
|
|
namespace HotelBusinessLogic.OfficePackage.HelperModels
|
|
{
|
|
public class WordInfoHeadwaiter
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string Title { get; set; } = string.Empty;
|
|
public List<ReportLunchRoomViewModel> LunchRooms { get; set; } = new();
|
|
}
|
|
}
|