终端一体化运控平台
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.
 
 
 

27 line
1.1 KiB

  1. using BPASmartClient.CustomResource.Pages.Enums;
  2. using Microsoft.Toolkit.Mvvm.ComponentModel;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPASmartClient.CustomResource.Pages.Model
  9. {
  10. public class UserInfo:ObservableObject
  11. {
  12. public String LastLogInTime { get; set; } = "无";
  13. public List<UserTreeViewModel> userTreeViewModels { get; set; }
  14. public string Id { get { return _id; }set { _id = value;OnPropertyChanged(); } }
  15. private string _id;
  16. public Permission permission { get { return _perimission; } set { _perimission = value;OnPropertyChanged(); } }
  17. private Permission _perimission;
  18. public string UserName { get { return _userName; } set { _userName = value;OnPropertyChanged(); } }
  19. private string _userName;
  20. public string Password { get { return _password; } set { _password = value;OnPropertyChanged(); } }
  21. private string _password;
  22. public List<string> CardId { get; set; } = new List<string>();
  23. }
  24. }