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

9 lines
143 B
TypeScript

import { DirectoryPathDTO } from './DirectoryDTO';
export interface FileDTO {
id: number;
name: string;
directory: DirectoryPathDTO;
}