mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 09:15:35 +03:00
7 lines
105 B
TypeScript
7 lines
105 B
TypeScript
|
|
import { IsNotEmpty } from 'class-validator';
|
||
|
|
|
||
|
|
class GetAssetDto {
|
||
|
|
@IsNotEmpty()
|
||
|
|
deviceId: string;
|
||
|
|
}
|