models/build/AuthorizedResource.ps1
Class AuthorizedResource { [string] $name [string] $id [bool] $authorized [string] $type AuthorizedResource() {} AuthorizedResource([string]$name, [string]$id, [bool]$authorized, [string]$type) { $this.authorized = $authorized $this.name = $name $this.id = $id $this.type = $type } } |