mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 17:25:35 +03:00
7 lines
117 B
TypeScript
7 lines
117 B
TypeScript
|
|
import { IsNotEmpty } from 'class-validator';
|
||
|
|
|
||
|
|
export class SearchAssetDto {
|
||
|
|
@IsNotEmpty()
|
||
|
|
searchTerm: string;
|
||
|
|
}
|