[성현모] master모드 추가
This commit is contained in:
18
Projects/NetStandard/CIAMaster/Models/MasterReport.cs
Normal file
18
Projects/NetStandard/CIAMaster/Models/MasterReport.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace CIAMaster.Models
|
||||
{
|
||||
public class MasterReportTable
|
||||
{
|
||||
public List<MasterReport> MasterReport { get; set; } = new List<MasterReport>();
|
||||
}
|
||||
|
||||
public class MasterReport
|
||||
{
|
||||
public string ProductID { get; set; }
|
||||
public DateTime Time { get; set; }
|
||||
public string Result { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user