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