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(); } } } }