19 lines
437 B
C#
Raw Normal View History

2025-03-17 01:56:27 +08:00
using System.Collections.ObjectModel;
using Seyounth.Hyosung.Data.Models;
namespace Seyounth.Hyosung.Models;
public class StackModel
{
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();
}