forked from ddrilling/asb_cloud_front
11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
|
/* istanbul ignore file */
|
||
|
/* tslint:disable */
|
||
|
/* eslint-disable */
|
||
|
|
||
|
export type FilePropertiesDto = {
|
||
|
id?: number;
|
||
|
name?: string | null;
|
||
|
idCategory?: number;
|
||
|
uploadDate?: string;
|
||
|
userName?: string | null;
|
||
|
}
|