2025-03-17 01:56:27 +08:00
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
using Seyounth.Hyosung.Data.Models;
|
|
|
|
|
2025-03-17 02:37:39 +08:00
|
|
|
namespace Seyounth.Hyosung.Runtime.Models;
|
2025-03-17 01:56:27 +08:00
|
|
|
|
2025-03-17 02:37:39 +08:00
|
|
|
public class StackStationModel
|
2025-03-17 01:56:27 +08:00
|
|
|
{
|
|
|
|
public string TrayCode { get; set; } = "NoData";
|
|
|
|
|
|
|
|
public string VarietyCode { get; set; } = "NoData";
|
|
|
|
|
|
|
|
public int Layers { get; set; }
|
|
|
|
|
|
|
|
public int TotalCount { get; set; }
|
|
|
|
|
|
|
|
public int CurrentCount { get; set; }
|
|
|
|
|
|
|
|
public ObservableCollection<Yarn> Yarns { get; set; } = new();
|
|
|
|
}
|