using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HotelContracts.ViewModels { public class ReportConferenceBindingRoomsViewModel { public int Id { get; set; } public string RoomName { get; set; } = string.Empty; public string RoomPrice { get; set; } = string.Empty; public string RoomFrame { get; set; } = string.Empty; } }