mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
* refactor: flatten infra folders * fix: database migrations * fix: test related import * fix: github actions workflow * chore: rename schemas to typesense-schemas
13 lines
312 B
TypeScript
13 lines
312 B
TypeScript
import { AlbumEntity, AssetEntity, SharedLinkType } from '@app/infra/entities';
|
|
|
|
export class CreateSharedLinkDto {
|
|
description?: string;
|
|
expiresAt?: string;
|
|
type!: SharedLinkType;
|
|
assets!: AssetEntity[];
|
|
album?: AlbumEntity;
|
|
allowUpload?: boolean;
|
|
allowDownload?: boolean;
|
|
showExif?: boolean;
|
|
}
|