AIMS/AIMS/OremrUserControl/RoomCard.cs
2022-08-23 21:12:59 +08:00

16 lines
307 B
C#

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; }
}
}