DeviceConfiger.cs 572 B

12345678910111213141516171819202122232425262728
  1. 
  2. namespace SKMC.Api.Device.Config
  3. {
  4. public class DeviceCatalogConfig : DeviceBaseConfig
  5. {
  6. public bool IsChecked { get; set; }
  7. }
  8. public class DeviceParamConfig : DeviceBaseConfig
  9. {
  10. private string _group;
  11. public string Group
  12. {
  13. get { return _group; }
  14. set { _group = value; RaisePropertyChanged(); }
  15. }
  16. private string _value;
  17. public string Value
  18. {
  19. get { return _value; }
  20. set { _value = value; RaisePropertyChanged(); }
  21. }
  22. }
  23. }