models/library/VariableGroup.ps1

class VariableGroup {
    [HashTable] $variables
    [int] $id
    [string] $type
    [string] $name
    [string] $description
    [ProviderData] $providerData
    [DateTime] $createdOn
    [User] $createdBy
    [DateTime] $modifiedOn
    [User] $modifiedBy
    [bool] $isShared
    [VariableGroupProjectReferences[]] $variableGroupProjectReferences
}