inbox.ts 268 B

123456789101112131415
  1. import { NotePreview } from '@/types/notification';
  2. export type NoteInboxResponse = {
  3. total: number;
  4. unreadCount: number;
  5. list: NotePreview[];
  6. };
  7. export type NoteDetail = {
  8. id: number;
  9. title: string;
  10. content: string;
  11. senderName: string;
  12. createdAt: string;
  13. };