immich/server/libs/domain/src/share/dto/create-shared-link.dto.ts
2023-05-30 08:15:56 -05:00

13 lines
310 B
TypeScript

import { AlbumEntity, AssetEntity, SharedLinkType } from '@app/infra/entities';
export class CreateSharedLinkDto {
description?: string;
expiresAt?: Date;
type!: SharedLinkType;
assets!: AssetEntity[];
album?: AlbumEntity;
allowUpload?: boolean;
allowDownload?: boolean;
showExif?: boolean;
}