using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models.Cosmos.Common { public class CourseChange { /// /// 新增的名单 /// public List addList { get; set; } /// /// 移除的名单 /// public List delList { get; set; } public string id { get; set; } public string code { get; set; } public string name { get; set; } public string scope { get; set; } public string school { get; set; } public string creatorId { get; set; } } }