123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Model.ViewModel
- {
- public class TispSpotsRegionViewModel : BaseViewModel
- {
- public Guid C_RegionID { get; set; }
- public string C_RegionName { get; set; }
- public string C_RegionImageUrl { get; set; }
- public DateTime D_CreateOn { get; set; }
- public string C_UserName { get; set; }
- public string C_Remark { get; set; }
- public string C_Status { get; set; }
- public IList<RegionSpot> RegionSpotList { get; set; }
- }
- public class RegionSpot
- {
- public Guid C_SpotID { get; set; }
- public string C_SpotName { get; set; }
- public string C_SpotGPS { get; set; }
- public string C_SpotStatus { get; set; }
- }
- }
|