export interface UserNotification {
    next_page?: string;
    count: number;
    items: Notification[];
}
export interface Notification {
    title: string;
    sub_title: string;
    date: string;
    is_new: boolean;
    url: string;
}
