Classes/ValueAttribute.ps1
Class ValueAttribute : Attribute { [string]$Name [string]$Value [string]$DefaultValue ValueAttribute([string]$Name,[System.Object]$Value, [System.Object]$DefaultValue) { $this.Name = $Name $this.Value = $Value $this.DefaultValue = $DefaultValue } } |