MachineConfig.cs 721 B

1234567891011121314151617181920212223242526272829303132333435
  1. 
  2. using SKMC.Api.Device.Config;
  3. namespace SKMC.Api.Machine.Config
  4. {
  5. /// <summary>
  6. /// 机台目录配置
  7. /// </summary>
  8. public class MachineCatalogConfig : ConfigBase
  9. {
  10. public bool IsChecked { get; set; }
  11. }
  12. /// <summary>
  13. /// 机台参数配置
  14. /// </summary>
  15. public class MachineParamConfig : ConfigBase
  16. {
  17. private string _group;
  18. public string Group
  19. {
  20. get { return _group; }
  21. set { _group = value; RaisePropertyChanged(); }
  22. }
  23. private string _value;
  24. public string Value
  25. {
  26. get { return _value; }
  27. set { _value = value; RaisePropertyChanged(); }
  28. }
  29. }
  30. }