mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
import { IsNotEmpty, IsUUID } from 'class-validator';
|
|
|
|
export class UserIdDto {
|
|
@IsNotEmpty()
|
|
@IsUUID('4')
|
|
@ApiProperty({ format: 'uuid' })
|
|
userId!: string;
|
|
}
|