using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ophelias.Models { internal class @int { internal int Id; internal bool Occupied; internal @int(int id) { Id = id; Occupied = false; } } internal class RoomList { internal List<@int> Rooms; internal RoomList() { Rooms = new List<@int>(); } } }