You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Microsoft.Toolkit.Mvvm.ComponentModel;
-
- namespace BPASmartClient.SmallBatchingSystem
- {
- /// <summary>
- /// 原料仓信息
- /// </summary>
- public class SiloInfoModel : ObservableObject
- {
- /// <summary>
- /// 原料名称
- /// </summary>
- public string SiloName { get { return _mSiloName; } set { _mSiloName = value; OnPropertyChanged(); } }
- private string _mSiloName;
-
- /// <summary>
- /// 料仓原料位置
- /// </summary>
- public int SiloLoc { get { return _mSiloLoc; } set { _mSiloLoc = value; OnPropertyChanged(); } }
- private int _mSiloLoc;
-
- }
- }
|