SchoolInfo.cs 864 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using MessagePack;
  5. namespace TEAMModelOS.Model.Core
  6. {
  7. [MessagePackObject(keyAsPropertyName: true)]
  8. public class SchoolInfo
  9. {
  10. public string code { get; set; }
  11. public string name { get; set; }
  12. public string countryId { get; set; }
  13. public string countryName { get; set; }
  14. public string provinceId { get; set; }
  15. public string provinceName { get; set; }
  16. public string cityId { get; set; }
  17. public string cityName { get; set; }
  18. public string address { get; set; }
  19. public string typeId { get; set; }
  20. public string typeName { get; set; }
  21. public string source { get; set; }
  22. public string distId { get; set; }
  23. public string distName { get; set; }
  24. public string schoolDist { get; set; }
  25. public string aliasName { get; set; }
  26. public string shortCode { get; set; }
  27. }
  28. }