Classes/OBNClientClass.ps1

<#
    OBNClient represents and Office 365 Tenant from the MSOLService module.
#>

class OBNClient {

    # Properties

    # The MSOLservice TenantID
    [string] $TenantId

    # The MSOLService PartnerCompanyName
    [string] $Name

}