import type { DateTimeTzString } from "../types/DateTimeTzString"; import type { ExternalFileLinkServiceType } from "../types/ExternalFileLinkServiceType"; import type { User } from "./User"; export interface ExternalFileLink { readonly id: number; readonly serviceType: ExternalFileLinkServiceType; readonly name: string; readonly url: string; readonly createdUser: User; readonly created: DateTimeTzString; readonly updatedUser: User; readonly updated: DateTimeTzString; }