using BPA.Helper;
using System.Collections.ObjectModel;
namespace BPASmartClient.FoodStationTest.Model
{
///
/// 远程配方数据。
///
public class RemoteRecipeData : NotifyBase
{
///
/// 配方名称
///
public string RecipeName { get { return _mRecipeName; } set { _mRecipeName = value; OnPropertyChanged(); } }
private string _mRecipeName;
///
/// 配方ID
///
public string RecipeCode { get { return _mRecipeCode; } set { _mRecipeCode = value; OnPropertyChanged(); } }
private string _mRecipeCode;
///
/// 托盘编号
///
public int TrayCode { get { return _mTrayCode; } set { _mTrayCode = value; OnPropertyChanged(); } }
private int _mTrayCode;
///
/// 原料数据
///
public ObservableCollection RawMaterial { get; set; } = new ObservableCollection();
}
}