27 lines
657 B
C#
27 lines
657 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CIAMaster.Models
|
|
{
|
|
public class MasterTable
|
|
{
|
|
public List<MasterTime> MasterTime { get; set; } = new List<MasterTime>();
|
|
public List<MasterProduct> MasterProduct { get; set; } = new List<MasterProduct>();
|
|
}
|
|
|
|
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; }
|
|
}
|
|
}
|