12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace TEAMModelOS.SDK.Models
- {
- public class Teacher : CosmosEntity
- {
- public string name { get; set; }
- public string picture { get; set; }
- public int size { get; set; }
- public string defaultSchool { get; set; }
- public List<TeacherSchool> schools { get; set; }= new List<TeacherSchool>();
- public List<TeacherArea> areas { get; set; } = new List<TeacherArea>();
- public List<ThirdBind> binds { get; set; } = new List<ThirdBind>();
- public class TeacherSchool
- {
- public string schoolId { get; set; }
- public string name { get; set; }
- public string status { get; set; }
- public long time { get; set; }
- public string picture { get; set; }
- public string areaId { get; set; }
- }
- public class TeacherArea
- {
- public string areaId { get; set; }
- public string name { get; set; }
- public string status { get; set; }
- }
- public class ThirdBind
- {
- public string webid { get; set; }
- public string pxid { get; set; }
- public string tid { get; set; }
- }
- }
- }
|