using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model.ViewModel.SYS { public class LicenseLargeScreenTemplateModel : BaseViewModel { public string C_LicenseCode { get; set; } public string C_LicenseName { get; set; } public string C_LargeScreenTemplateCode { get; set; } public string C_LargeScreenTemplateName { get; set; } public string C_CreateBy { get; set; } public DateTime D_CreateOn { get; set; } public string C_Creator { get; set; } } public class AddLicenseLargeScreenTemplateModel { public string C_LicenseCode { get; set; } public List LargeScreenTemplateList { get; set; } } }