Files
2025-11-21 14:09:00 +09:00

19 lines
413 B
C#

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