using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Ropin.Inspection.Model.ViewModel
{
    public class TispSpotsRouteViewModel :BaseViewModel
    {
        public Guid C_RouteID { get; set; }
        public string C_RouteName { get; set; }
        public string C_RouteImageUrl { 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<RouteSpot> RouteSpotList { get; set; }
    }
    public class RouteSpot
    {
        public Guid C_SpotID { get; set; }
        public string C_SpotName { get; set; }
    }
}