1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/src/common/entities/FileDTO.ts

10 lines
142 B
TypeScript
Raw Normal View History

2021-06-28 01:33:37 +08:00
import {DirectoryPathDTO} from './DirectoryDTO';
2018-11-26 07:26:29 +08:00
2021-04-02 03:48:38 +08:00
2021-06-28 01:33:37 +08:00
export interface FileDTO {
2018-11-26 07:26:29 +08:00
id: number;
name: string;
2021-06-28 01:33:37 +08:00
directory: DirectoryPathDTO;
2018-11-26 07:26:29 +08:00
}