Functions/Get-MSPCompleteGroupPropertyList.ps1

<#
.SYNOPSIS
    This function returns a list of the properties present in an MSPComplete group object.
#>

function Get-MSPCompleteGroupPropertyList {
    # Return the list of properties
    return @(
        "Name"
    )
}