using Prism.Mvvm; namespace SKMC.Api.Device.Config { public class DeviceBaseConfig : BindableBase { private string _code; public string Code { get { return _code; } set { _code = value; RaisePropertyChanged(); } } private string _name; public string Name { get { return _name; } set { _name = value; RaisePropertyChanged(); } } private string _note; public string Note { get { return _note; } set { _note = value; RaisePropertyChanged(); } } } }