export interface Attachment {
    id: string;
    user_id: string;
    external_id: string;
    file_url: string;
    file_type: string;
    created: Date;
}
