using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models { public class ListChange { /// /// 醍摩豆学生名单加入的成员 /// 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 List tchjoin { get; set; } = new List(); /// /// 学校教师名单离开的成员 /// public List tchleave { get; set; } = new List(); public string listid { get; set; } /// /// 分区 /// public string scope { get; set; } public string originCode { get; set; } public string school { get; set; } public string creatorId { get; set; } public string type { get; set; } } }