2021-07-23 17:15:33 +05:00
|
|
|
/* istanbul ignore file */
|
|
|
|
/* tslint:disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
|
2021-08-31 12:30:44 +05:00
|
|
|
import type { UserDto } from './UserDto';
|
|
|
|
|
2021-08-17 10:44:41 +05:00
|
|
|
export type FileInfoDto = {
|
2021-07-23 17:15:33 +05:00
|
|
|
id?: number;
|
2021-08-29 17:32:18 +05:00
|
|
|
idWell?: number;
|
2021-07-23 17:15:33 +05:00
|
|
|
idCategory?: number;
|
2021-08-29 17:32:18 +05:00
|
|
|
idAuthor?: number;
|
|
|
|
name?: string | null;
|
2021-07-23 17:15:33 +05:00
|
|
|
uploadDate?: string;
|
2021-08-31 12:30:44 +05:00
|
|
|
size?: number;
|
|
|
|
author?: UserDto;
|
2021-10-12 10:39:56 +05:00
|
|
|
}
|