using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models.Cosmos.School { /// /// 教室 /// public class Room : CosmosEntity { public string name { get; set; } public float? x { get; set; } public float? y { get; set; } public string sn { get; set; } /// /// 教室属性,普通 /专设的教室 /// public string openType { get; set; } public string scope { get; set; } } }