mirror of
https://github.com/immich-app/immich
synced 2025-06-10 05:58:26 +00:00
13 lines
310 B
TypeScript
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;
|
|
}
|