notification.ts 358 B

1234567891011121314151617181920
  1. export interface NotificationItem {
  2. id: number;
  3. type: number;
  4. title: string;
  5. message: string;
  6. isRead: boolean;
  7. actionUrl: string|null;
  8. imageUrl: string|null;
  9. createdAt: string;
  10. }
  11. export interface NotePreview {
  12. id: number;
  13. senderMemberID: number;
  14. senderName: string|null;
  15. title: string;
  16. isRead: boolean;
  17. isSystem: boolean;
  18. createdAt: string;
  19. }