mirror of
https://github.com/immich-app/immich.git
synced 2025-12-19 01:11:07 +03:00
7 lines
112 B
TypeScript
7 lines
112 B
TypeScript
import { IsNotEmpty } from 'class-validator';
|
|
|
|
export class GetAssetDto {
|
|
@IsNotEmpty()
|
|
deviceId: string;
|
|
}
|