Classes/OBNLicenseClass.ps1

<#
    OBNLicense represents an Office 365 License from the MSOLService module.
#>

class OBNLicense {

    # Properties

    # The ID of the License
    [string]$Id

    # The Name of the License
    [string]$Name

    # Number of active licenses
    [int]$Active

    # Number of active licenses assigned to mailboxes
    [int]$Used

}