SchoolTeacher.cs 658 B

123456789101112131415161718192021
  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; } = new List<string>();
  14. public List<string> permissions { get; set; }
  15. public string status { get; set; }
  16. public long createTime { get; set; }
  17. public string groupId { get; set; }
  18. public string groupName { get; set; }
  19. }
  20. }