using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model.ViewModel.MTN { public class DevOpsPlanDeviceModel { public string CId { get; set; } [Required] public string CDevOpsPlanCode { get; set; } public string CSpotCode { get; set; } [Required] public string CDevStoreCode { get; set; } public List cSpotCodes { get; set; } public string CRemark { get; set; } public bool IIsDel { get; set; } public DateTime D_CreateOn { get; set; } public string DevStoreName { get; set; } public string SpotName { get; set; } public string Url { get; set; } public string CNumberCode { get; set; } public bool IsConfig { get; set; } } public class DevOpsPlanDeviceGroupModel { public string CDevStoreCode { get; set; } public string DevStoreName { get; set; } public string CNumberCode { get; set; } public string Url { get; set; } public List Spots { get; set;} } public class SpotGroupModel { public string CSpotCode { get; set; } public string CName { get; set; } } public class DevOpsPlanDeviceInput { } }