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