19 lines
437 B
C#
19 lines
437 B
C#
![]() |
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();
|
||
|
}
|