12 lines
345 B
C#
Raw Normal View History

2024-03-24 12:30:24 +04:00
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();
}
}