ChartParameter.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System.Collections.ObjectModel;
  2. using Caliburn.Micro.Core;
  3. using Prism.Mvvm;
  4. namespace CyberX8_MainPages.Unity
  5. {
  6. public class RecipeItem
  7. {
  8. public bool Selected { get; set; }
  9. public string Recipe { get; set; }
  10. public string Guid { get; set; }
  11. public string RecipeRunGuid { get; set; }
  12. public string Chamber { get; set; }
  13. public string Status { get; set; }
  14. public string StartTime { get; set; }
  15. public string EndTime { get; set; }
  16. public string LotID { get; set; }
  17. public string SlotID { get; set; }
  18. }
  19. public class ParameterNode : PropertyChangedBase
  20. {
  21. private bool _Selected = false;
  22. public bool Selected
  23. {
  24. get { return _Selected; }
  25. set { _Selected = value; NotifyOfPropertyChange("Selected"); }
  26. }
  27. public string Name { get; set; }
  28. public ObservableCollection<ParameterNode> ChildNodes { get; set; }
  29. public ParameterNode ParentNode { get; set; }
  30. }
  31. }