[성현모] master모드 추가

This commit is contained in:
SHM
2025-11-21 14:09:00 +09:00
parent 704ec151e6
commit 4eb29fa4fb
7 changed files with 236 additions and 47 deletions

View 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; }
}
}