123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.Models
- {
- public class TmdUser : CosmosEntity
- {
- public string name { get; set; }
- public string picture { get; set; }
- public string defaultSchool { get; set; }
- public List<School> schools { get; set; }
- public class School
- {
- public string schoolId { get; set; }
- public string name { get; set; }
- public string status { get; set; }
- public long time { get; set; }
- }
- }
- }
|