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 Yarns { get; set; } = new(); }