12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- namespace LogoForceTestApp.Modules.MainModule.Models
- {
- public class UpLoadTraceModel
- {
- public Serials serials { get; set; }
- public Data data { get; set; }
- }
- public class Serials
- {
- public string part_id { get; set; }
- }
- public class Data
- {
- public Insight insight { get; set; }
- }
- public class Insight
- {
- public Test_Attributes test_attributes { get; set; }
- public Test_Station_Attributes test_station_attributes { get; set; }
- public Uut_Attributes uut_attributes { get; set; }
- public Result[] results { get; set; }
- }
- public class Test_Attributes
- {
- public string test_result { get; set; }
- public string uut_start { get; set; }
- public string uut_stop { get; set; }
- }
- public class Test_Station_Attributes
- {
- public string line_id { get; set; }
- public string software_name { get; set; }
- public string software_version { get; set; }
- public string station_id { get; set; }
- }
- public class Uut_Attributes
- {
- public string station_vendor { get; set; }
- }
- public class Result
- {
- public string result { get; set; }
- public string test { get; set; }
- public string units { get; set; }
- public string value { get; set; }
- }
- }
|