mirror of
https://github.com/immich-app/immich.git
synced 2025-12-22 17:24:56 +03:00
10 lines
201 B
TypeScript
10 lines
201 B
TypeScript
|
|
import { ApiProperty } from '@nestjs/swagger';
|
||
|
|
import { IsNotEmpty, IsString } from 'class-validator';
|
||
|
|
|
||
|
|
export class OAuthCallbackDto {
|
||
|
|
@IsNotEmpty()
|
||
|
|
@IsString()
|
||
|
|
@ApiProperty()
|
||
|
|
url!: string;
|
||
|
|
}
|