mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 09:15:35 +03:00
9 lines
165 B
TypeScript
9 lines
165 B
TypeScript
|
|
import { IsNotEmpty, IsOptional, IsString } from 'class-validator';
|
||
|
|
|
||
|
|
export class APIKeyCreateDto {
|
||
|
|
@IsString()
|
||
|
|
@IsNotEmpty()
|
||
|
|
@IsOptional()
|
||
|
|
name?: string;
|
||
|
|
}
|