12 lines
273 B
C#
12 lines
273 B
C#
![]() |
namespace Seyounth.Hyosung.Data.Models.Plc;
|
||
|
|
||
|
public class PlcStackingInfo
|
||
|
{
|
||
|
public string TrayCode { get; set; }
|
||
|
|
||
|
public List<string> YarnCode { get; set; } = new List<string>();
|
||
|
|
||
|
public int YarnCount { get; set; }
|
||
|
|
||
|
public int TotalYarnCount { get; set; }
|
||
|
}
|