using System; using System.Collections.Generic; using System.Text; namespace CIAMaster.Models { public class MasterTable { public List MasterTime { get; set; } = new List(); public List MasterProduct { get; set; } = new List(); } public class MasterTime { public DateTime Time { get; set; } public bool Avtive { get; set; } } public class MasterProduct { public int Order { get; set; } public string ProductID { get; set; } public string Result { get; set; } public bool Active { get; set; } } }