| 1234567891011121314151617181920 |
- 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;
- }
|