/**
 * Represents a woltlab-application.
 */
export interface IWoltLabApplication {
    /**
     * The id of the application.
     */
    ID: string;
    /**
     * The human-readable name of the application.
     */
    DisplayName: string;
}
