2023-08-16 22:32:16 +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; }
}
}