using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.Toolkit.Mvvm.ComponentModel; using System.Collections.ObjectModel; namespace BPASmartClient.SmallBatchingSystem { /// /// 出料口信息 /// public class OutletInfoModel : ObservableObject { /// /// 出料口名称 /// public string OutletName { get { return _mOutletName; } set { _mOutletName = value; OnPropertyChanged(); } } private string _mOutletName; /// /// 出料口位置 /// public int OutletLoc { get { return _mOutletLoc; } set { _mOutletLoc = value; OnPropertyChanged(); } } private int _mOutletLoc; /// /// 出料口对应的料仓信息 /// public ObservableCollection SiloInfos { get; set; } = new ObservableCollection(); } }