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

namespace Ropin.Inspection.Model
{
    
    public class TmtnDevOpsWithImageViewModel : BaseViewModel
    {
        public string C_ID { get; set; }
        public string C_Name { get; set; }

        public string C_SpotCode { get; set; }

        public Guid C_ExamineBy { get; set; }

        public DateTime? C_ExamineOn { get; set; }

        public string C_Remark { get; set; }
        public Guid C_CreateBy { get; set; }
        public DateTime D_CreateOn { get; set; }
        public Guid? C_LastUpdatedBy { get; set; }
        public DateTime? D_LastUpdatedOn { get; set; }
        public string C_Status { get; set; }
        public string DevStoreCode { get; set; }
        public string DevStoreName { get; set; }
        public string DevStoreNumberCode { get; set; }
        public string SpotName { get; set; }
        public string UserName { get; set; }
        public string DevUrl { get; set; }
        //public IList<string> FilePaths { get; set; }
    }
}