export interface AdminNoteAuthor { id: number; username: string; } export interface AdminNote { id: number; note_type: string; author: AdminNoteAuthor; body: string; date_created: string; date_modified: string; archived: boolean; date_archived?: string; }