22 lines
532 B
C#
22 lines
532 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace Seyounth.Hyosung.Data.Models.Plc;
|
|
|
|
public partial class PackLineOption : ObservableObject
|
|
{
|
|
[ObservableProperty] private int headCount;
|
|
|
|
[ObservableProperty] private bool hasBox;
|
|
|
|
[ObservableProperty] private bool isTop;
|
|
|
|
[ObservableProperty] private bool isPack;
|
|
|
|
[ObservableProperty] private bool isFilm;
|
|
|
|
[ObservableProperty] private bool isLam;
|
|
|
|
[ObservableProperty] private string trayCode;
|
|
|
|
[ObservableProperty] private bool isBlack;
|
|
} |