Area.cs 488 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models
  5. {
  6. public class Area : CosmosEntity
  7. {
  8. public Area()
  9. {
  10. pk = "Area";
  11. }
  12. public string name { get; set; }
  13. public string provCode { get; set; }
  14. public string provName { get; set; }
  15. public string cityCode { get; set; }
  16. public string cityName { get; set; }
  17. public string standard { get; set; }
  18. }
  19. }