export interface NotificationItem { id: number; type: number; title: string; message: string; isRead: boolean; actionUrl: string|null; imageUrl: string|null; createdAt: string; } export interface NotePreview { id: number; senderMemberID: number; senderName: string|null; title: string; isRead: boolean; isSystem: boolean; createdAt: string; }