export interface EntryAttachment { EntryAttachmentId: number; EntryId: number; UploadFileId: number; AttachmentName: string; AttachmentURL: string; CreationTime: Date; CreatedBy: string; FileName: string; Path: string; Hash: string; DoesExist: boolean; URL: string; } export interface AttachmentUploadRequest { entryId: number; uploadFileId: number; attachmentName: string; attachmentURL: string; }