using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BPA.Helper;
namespace BPASmartClient.SmallBatchingSystem
{
///
/// 原料仓信息
///
public class SiloInfoModel : NotifyBase
{
///
/// 原料名称
///
public string SiloName { get { return _mSiloName; } set { _mSiloName = value; OnPropertyChanged(); } }
private string _mSiloName;
///
/// 料仓原料位置
///
public int SiloLoc { get { return _mSiloLoc; } set { _mSiloLoc = value; OnPropertyChanged(); } }
private int _mSiloLoc;
}
}