mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
7 lines
135 B
TypeScript
7 lines
135 B
TypeScript
import { IsNotEmpty, IsOptional } from 'class-validator';
|
|
|
|
export class GetAllAssetQueryDto {
|
|
@IsOptional()
|
|
nextPageKey: string;
|
|
}
|