CodeValue.cs 942 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models
  5. {
  6. public class CodeValue
  7. {
  8. public CodeValue() {
  9. }
  10. public CodeValue(string code ,string value)
  11. {
  12. this.code = code;
  13. this.value=value;
  14. }
  15. public string code { get; set; }
  16. public string value { get; set; }
  17. }
  18. public class IdSchool
  19. {
  20. public string id { get; set; }
  21. public string school { get; set; }
  22. public string picture { get; set; }
  23. public string name { get; set; }
  24. }
  25. public class SchoolOrTeacher
  26. {
  27. public string id { get; set; }
  28. public string picture { get; set; }
  29. public string name { get; set; }
  30. public string scope { get; set; }
  31. }
  32. public class IdCode
  33. {
  34. public string id { get; set; }
  35. public string code { get; set; }
  36. }
  37. }