/** * Represents notification event. */ class NotificationEvent { id: string = ''; title: string = ''; description: string = ''; } export default NotificationEvent;