终端一体化运控平台
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.
 
 
 

46 lines
1.0 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.MorkCL.Model.Recipe
  7. {
  8. public class LocalRecipeData:NotifyBase
  9. {
  10. private string _Name;
  11. public string Name
  12. {
  13. get { return _Name; }
  14. set { _Name = value; OnPropertyChanged(); }
  15. }
  16. private string _ID;
  17. public string ID
  18. {
  19. get { return _ID; }
  20. set { _ID = value; OnPropertyChanged(); }
  21. }
  22. private string _Remark;
  23. /// <summary>
  24. /// 备注
  25. /// </summary>
  26. public string Remark
  27. {
  28. get { return _Remark; }
  29. set { _Remark = value; OnPropertyChanged(); }
  30. }
  31. private Dictionary<EFunc, FuncPar[]> _Functions;
  32. public Dictionary<EFunc, FuncPar[]> Functions
  33. {
  34. get { return _Functions; }
  35. set { _Functions = value; OnPropertyChanged(); }
  36. }
  37. }
  38. }