2025-03-17 02:37:39 +08:00

19 lines
452 B
C#

using System.Collections.ObjectModel;
using Seyounth.Hyosung.Data.Models;
namespace Seyounth.Hyosung.Runtime.Models;
public class StackStationModel
{
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();
}