12 lines
273 B
C#
Raw Permalink Normal View History

2025-03-16 03:17:36 +08:00
namespace Seyounth.Hyosung.Data.Models.Plc;
public class PlcStackingInfo
{
2025-03-20 19:32:49 +08:00
public string TrayCode { get; set; }
2025-03-16 03:17:36 +08:00
2025-03-20 19:32:49 +08:00
public List<string> YarnCode { get; set; } = new List<string>();
2025-03-16 03:17:36 +08:00
public int YarnCount { get; set; }
public int TotalYarnCount { get; set; }
}