using Microsoft.Toolkit.Mvvm.ComponentModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.SmallBatchingSystem { public class RecipeRawMaterialInfo : ObservableObject { /// /// 原料名称 /// public string SiloName { get { return _mSiloName; } set { _mSiloName = value; OnPropertyChanged(); } } private string _mSiloName; /// /// 原料重量 /// public int SiloWeight { get { return _mSiloWeight; } set { _mSiloWeight = value; OnPropertyChanged(); } } private int _mSiloWeight; /// /// 选中索引 /// public int SelectIndex { get { return _mSelectIndex; } set { _mSelectIndex = value; OnPropertyChanged(); } } private int _mSelectIndex; } }