|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.MorkCL.Model.Recipe
- {
- public class LocalRecipeData:NotifyBase
- {
- private string _Name;
-
- public string Name
- {
- get { return _Name; }
- set { _Name = value; OnPropertyChanged(); }
- }
- private string _ID;
-
- public string ID
- {
- get { return _ID; }
- set { _ID = value; OnPropertyChanged(); }
- }
- private string _Remark;
- /// <summary>
- /// 备注
- /// </summary>
- public string Remark
- {
- get { return _Remark; }
- set { _Remark = value; OnPropertyChanged(); }
- }
- private Dictionary<EFunc, FuncPar[]> _Functions;
-
- public Dictionary<EFunc, FuncPar[]> Functions
- {
- get { return _Functions; }
- set { _Functions = value; OnPropertyChanged(); }
- }
-
-
-
- }
- }
|