- 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
- {
- /// <summary>
- /// 原料名称
- /// </summary>
- public string SiloName { get { return _mSiloName; } set { _mSiloName = value; OnPropertyChanged(); } }
- private string _mSiloName;
-
- /// <summary>
- /// 原料重量
- /// </summary>
- public int SiloWeight { get { return _mSiloWeight; } set { _mSiloWeight = value; OnPropertyChanged(); } }
- private int _mSiloWeight;
-
- /// <summary>
- /// 选中索引
- /// </summary>
- public int SelectIndex { get { return _mSelectIndex; } set { _mSelectIndex = value; OnPropertyChanged(); } }
- private int _mSelectIndex;
-
- }
- }
|