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

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