mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
20 lines
351 B
TypeScript
20 lines
351 B
TypeScript
import {UserDTO} from "./UserDTO";
|
|
|
|
export interface SharingDTO {
|
|
id: number;
|
|
path: string;
|
|
sharingKey: string;
|
|
password: string;
|
|
expires: number;
|
|
timeStamp: number;
|
|
includeSubfolders: boolean;
|
|
creator: UserDTO;
|
|
}
|
|
|
|
export interface CreateSharingDTO {
|
|
id?: number;
|
|
password: string;
|
|
valid: number;
|
|
includeSubfolders: boolean;
|
|
}
|