Interface Notification

interface Notification {
    category?: string;
    created: Date;
    id: string;
    text: LanguageString;
    title: LanguageString;
    type: NotificationType;
}

Properties

category?: string
created: Date
id: string