1234567891011121314151617181920212223242526272829 |
- namespace XHZB.Model
- {
- public class ZBMenuModel : NotifyModel
- {
- private string _name;
-
- public string Name
- {
- get => _name;
- set { _name = value; OnPropertyChanged("Name"); }
- }
-
- private string _Pic;
-
- public string Pic
- {
- get => _Pic;
- set { _Pic = value; OnPropertyChanged("Pic"); }
- }
-
- private bool _Selected;
-
- public bool Selected
- {
- get => _Selected;
- set { _Selected = value; OnPropertyChanged("Selected"); }
- }
- }
- }
|