2025-03-19 20:55:31 +08:00

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