Teacher.cs 602 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace TEAMModelOS.SDK.Models
  6. {
  7. public class Teacher : CosmosEntity
  8. {
  9. public string name { get; set; }
  10. public string picture { get; set; }
  11. public int size { get; set; }
  12. public string defaultSchool { get; set; }
  13. public List<School> schools { get; set; }
  14. public class School
  15. {
  16. public string schoolId { get; set; }
  17. public string name { get; set; }
  18. public string status { get; set; }
  19. }
  20. }
  21. }