using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models.Cosmos.Common { public class StuListChange { /// /// 教师名单加入的成员 /// public List tmdjoin { get; set; } = new List(); /// /// 教师名单离开的成员 /// public List tmdhleave { get; set; } = new List(); /// /// 学校学生名单加入的成员 /// public List stujoin { get; set; } = new List(); /// /// 学校学生名单离开的成员 /// public List stuleave { get; set; } = new List(); public string listid { get; set; } /// /// 分区 /// public string scope { get; set; } public string originCode { get; set; } } }