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

29 lines
962 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Microsoft.Toolkit.Mvvm.ComponentModel;
  7. using Microsoft.Toolkit.Mvvm.Input;
  8. namespace BPASmartClient.DosingSystem.Model
  9. {
  10. public class ActionMenu : ObservableObject
  11. {
  12. public string CommandParameter { get { return _mCommandParameter; } set { _mCommandParameter = value; OnPropertyChanged(); } }
  13. private string _mCommandParameter;
  14. //public Permission[] permission { get { return _mpermission; } set { _mpermission = value; OnPropertyChanged(); } }
  15. //private Permission[] _mpermission;
  16. public string MenuName { get { return _mMenuName; } set { _mMenuName = value; OnPropertyChanged(); } }
  17. private string _mMenuName;
  18. //public string NameSpace { get { return _mNameSpace; } set { _mNameSpace = value; OnPropertyChanged(); } }
  19. //private string _mNameSpace;
  20. }
  21. }