| 12345678910111213141516171819202122232425262728 |
-
- namespace SKMC.Api.Device.Config
- {
- public class DeviceCatalogConfig : DeviceBaseConfig
- {
- public bool IsChecked { get; set; }
- }
- public class DeviceParamConfig : DeviceBaseConfig
- {
- private string _group;
- public string Group
- {
- get { return _group; }
- set { _group = value; RaisePropertyChanged(); }
- }
- private string _value;
- public string Value
- {
- get { return _value; }
- set { _value = value; RaisePropertyChanged(); }
- }
- }
- }
|