TispSpotsRegionViewModel.cs 856 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Ropin.Inspection.Model.ViewModel
  7. {
  8. public class TispSpotsRegionViewModel : BaseViewModel
  9. {
  10. public Guid C_RegionID { get; set; }
  11. public string C_RegionName { get; set; }
  12. public string C_RegionImageUrl { get; set; }
  13. public DateTime D_CreateOn { get; set; }
  14. public string C_UserName { get; set; }
  15. public string C_Remark { get; set; }
  16. public string C_Status { get; set; }
  17. public IList<RegionSpot> RegionSpotList { get; set; }
  18. }
  19. public class RegionSpot
  20. {
  21. public Guid C_SpotID { get; set; }
  22. public string C_SpotName { get; set; }
  23. public string C_SpotGPS { get; set; }
  24. public string C_SpotStatus { get; set; }
  25. }
  26. }