asb_cloud_front/src/services/api/models/FileInfoDto.ts

14 lines
292 B
TypeScript
Raw Normal View History

/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
2021-08-17 10:44:41 +05:00
export type FileInfoDto = {
id?: number;
2021-08-29 17:32:18 +05:00
idWell?: number;
idCategory?: number;
2021-08-29 17:32:18 +05:00
idAuthor?: number;
name?: string | null;
uploadDate?: string;
2021-08-17 10:44:41 +05:00
authorName?: string | null;
2021-08-20 13:49:21 +05:00
companyId?: number;
}