TispSpotsRegionsViewModel.cs 765 B

123456789101112131415161718192021222324
  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 TispSpotsRegionsViewModel : BaseViewModel
  9. {
  10. public string C_RegionName { get; set; }
  11. public Guid C_RegionID { get; set; }
  12. public Guid C_SpotID { get; set; }
  13. public string C_RegionImageUrl { get; set; }
  14. public string C_SpotName { get; set; }
  15. public DateTime D_CreateOn { get; set; }
  16. public string C_UserName { get; set; }
  17. public string C_Remark { get; set; }
  18. public string C_Status { get; set; }
  19. public string C_SpotGPS { get; set; }
  20. public string C_SpotStatus { get; set; }
  21. }
  22. }