using System;
using System.Collections.Generic;
using System.Text;
namespace TEAMModelOS.SDK.Models.Cosmos.Common.Inner
{
///
/// 学生名单变动
///
public class ClassChange
{
///
/// 教师名单加入的
///
public List tchjoin { get; set; } = new List();
///
/// 教师名单离开的
///
public List tchleave { get; set; } = new List();
///
/// 学校名单加入的
///
public List schjoin { get; set; } = new List();
///
/// 学校名单离开的
///
public List schleave { get; set; } = new List();
public string listid { get; set; }
///
/// 分区
///
public string scope { get; set; }
}
}