mirror of
https://github.com/immich-app/immich.git
synced 2025-12-19 17:23:21 +03:00
7 lines
112 B
TypeScript
7 lines
112 B
TypeScript
|
|
import { IsNotEmpty } from 'class-validator';
|
||
|
|
|
||
|
|
export class DeleteAssetDto {
|
||
|
|
@IsNotEmpty()
|
||
|
|
ids: string[];
|
||
|
|
}
|