export interface Notification {
    /**
     * Icon Class
     */
    iconClass?: string;
    /**
     * Icon Name
     */
    iconName?: string;
    /**
     * Notification ID
     */
    id: string;
    /**
     * Indicates whether this notification has a message.
     */
    message?: string;
    /**
     * Indicates whether this notification has a message.
     */
    subject?: string;
}
