using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace AIMS.OremrUserControl { [Serializable] public class RoomCard { public int Id { get; set; } public string RoomName { get; set; } public int UseCount { get; set; } } }