终端一体化运控平台
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

23 líneas
763 B

  1. using Microsoft.Toolkit.Mvvm.ComponentModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Collections.ObjectModel;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace FryPot_DosingSystem.Model
  9. {
  10. public class ActionMenu:ObservableObject
  11. {
  12. private string commandParmeter;
  13. public string CommandParameter { get { return commandParmeter; }set { commandParmeter = value; OnPropertyChanged(); } }
  14. private string menuName;
  15. public string MenuName { get { return menuName; } set { menuName = value;OnPropertyChanged(); } }
  16. private Authority[] authority;
  17. public Authority[] Authority { get { return authority; } set { authority = value; OnPropertyChanged(); } }
  18. }
  19. }