using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HotelContracts.ViewModels { public class ReportRoomsConferencesViewModel { public string DinnerName { get; set; } = string.Empty; public List Rooms { get; set; } public List Conferences { get; set; } } }