1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00

9 lines
143 B
TypeScript
Raw Normal View History

2022-04-04 19:37:31 +02:00
import { DirectoryPathDTO } from './DirectoryDTO';
2021-04-01 21:48:38 +02:00
2021-06-27 19:33:37 +02:00
export interface FileDTO {
2018-11-26 00:26:29 +01:00
id: number;
name: string;
2021-06-27 19:33:37 +02:00
directory: DirectoryPathDTO;
2018-11-26 00:26:29 +01:00
}