25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- 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;
-
-
- }
- }
|