12 lines
273 B
C#
Raw Normal View History

2025-03-16 03:17:36 +08:00
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; }
}