SchoolTeacher.cs 546 B

12345678910111213141516171819
  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 SchoolTeacher : CosmosEntity
  8. {
  9. public string name { get; set; }
  10. public string picture { get; set; }
  11. public int size { get; set; }
  12. public string job { get; set; }
  13. public List<string> roles { get; set; }
  14. public List<string> permissions { get; set; }
  15. public string status { get; set; }
  16. public long createTime { get; set; }
  17. }
  18. }