ConfigBase.cs 629 B

12345678910111213141516171819202122232425262728293031
  1. using Prism.Mvvm;
  2. namespace SKMC.Api.Device.Config
  3. {
  4. public class ConfigBase : BindableBase
  5. {
  6. private string _code;
  7. public string Code
  8. {
  9. get { return _code; }
  10. set { _code = value; RaisePropertyChanged(); }
  11. }
  12. private string _name;
  13. public string Name
  14. {
  15. get { return _name; }
  16. set { _name = value; RaisePropertyChanged(); }
  17. }
  18. private string _note;
  19. public string Note
  20. {
  21. get { return _note; }
  22. set { _note = value; RaisePropertyChanged(); }
  23. }
  24. }
  25. }