| 12345678910111213141516171819202122232425262728293031323334 |
- using Prism.Mvvm;
- namespace SKMC.Api.Device.Config
- {
- /// <summary>
- /// 配置项基类
- /// </summary>
- public class ConfigBase : 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(); }
- }
- }
- }
|