export interface NotificationItem {
    title: string;
    content: string;
    time: string;
    isNew: boolean;
    isRead?: boolean;
    tagColor?: string;
    category?: string;
}
