CodeValue.cs 721 B

12345678910111213141516171819202122232425262728293031
  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 IdCode
  26. {
  27. public string id { get; set; }
  28. public string code { get; set; }
  29. }
  30. }