/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { UserDto } from './UserDto'; export type FileInfoDto = { id?: number; idWell?: number; idCategory?: number; idAuthor?: number; name?: string | null; uploadDate?: string; size?: number; author?: UserDto; }