| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- using CommunityToolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.AppSetting
- {
- public class Business : ObservableObject
- {
- public int num { get; set; }
- private bool _isChecked;
- public bool isChecked { get => _isChecked; set => SetProperty(ref _isChecked, value); }
- private int _isOpen = 0;
- public int isOpen { get => _isOpen; set => SetProperty(ref _isOpen, value); }
- public string ParentName { get; set; }
- public string functionKey { get; set; }
- private string _name;
- public string name { get => _name; set => SetProperty(ref _name, value); }
- public int orderNum { get; set; }
- public long id { get; set; }
- public long parentId { get; set; }
- private int _state;
- public int state { get => _state; set => SetProperty(ref _state, value); }
- public int type { get; set; }
- private string _url;
- public string url { get => _url; set => SetProperty(ref _url, value); }
- public ObservableCollection<Business> children { get; set; } = new ObservableCollection<Business>();
- }
- }
|