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.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Microsoft.Toolkit.Mvvm.ComponentModel;
- using Microsoft.Toolkit.Mvvm.Input;
-
- namespace BPASmartClient.DosingSystem.Model
- {
- public class ActionMenu : ObservableObject
- {
- public string CommandParameter { get { return _mCommandParameter; } set { _mCommandParameter = value; OnPropertyChanged(); } }
- private string _mCommandParameter;
-
- //public Permission[] permission { get { return _mpermission; } set { _mpermission = value; OnPropertyChanged(); } }
- //private Permission[] _mpermission;
-
- public string MenuName { get { return _mMenuName; } set { _mMenuName = value; OnPropertyChanged(); } }
- private string _mMenuName;
-
-
- //public string NameSpace { get { return _mNameSpace; } set { _mNameSpace = value; OnPropertyChanged(); } }
- //private string _mNameSpace;
-
-
- }
- }
|