2021-07-23 17:15:33 +05:00
|
|
|
/* istanbul ignore file */
|
|
|
|
/* tslint:disable */
|
|
|
|
/* eslint-disable */
|
|
|
|
|
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-17 10:44:41 +05:00
|
|
|
authorName?: string | null;
|
2021-08-20 13:49:21 +05:00
|
|
|
companyId?: number;
|
2021-07-23 17:15:33 +05:00
|
|
|
}
|