9 lines
231 B
C#
9 lines
231 B
C#
|
namespace HotelContracts.ViewModels
|
|||
|
{
|
|||
|
public class ReportLunchRoomViewModel
|
|||
|
{
|
|||
|
public string LunchName { get; set; } = string.Empty;
|
|||
|
public List<Tuple<string, double>> Rooms { get; set; } = new();
|
|||
|
}
|
|||
|
}
|