src/Core/MenuItem.ps1
|
class MenuItem { [string]$Label [scriptblock]$Action MenuItem([string]$label, [scriptblock]$action) { $this.Label = $label $this.Action = $action } [void]Invoke() { & $this.Action } } |
|
class MenuItem { [string]$Label [scriptblock]$Action MenuItem([string]$label, [scriptblock]$action) { $this.Label = $label $this.Action = $action } [void]Invoke() { & $this.Action } } |