星火直播PC
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ZBMenuModel.cs 594B

1234567891011121314151617181920212223242526272829
  1. namespace XHZB.Model
  2. {
  3. public class ZBMenuModel : NotifyModel
  4. {
  5. private string _name;
  6. public string Name
  7. {
  8. get => _name;
  9. set { _name = value; OnPropertyChanged("Name"); }
  10. }
  11. private string _Pic;
  12. public string Pic
  13. {
  14. get => _Pic;
  15. set { _Pic = value; OnPropertyChanged("Pic"); }
  16. }
  17. private bool _Selected;
  18. public bool Selected
  19. {
  20. get => _Selected;
  21. set { _Selected = value; OnPropertyChanged("Selected"); }
  22. }
  23. }
  24. }