9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
import { IsString, MaxLength, MinLength } from 'class-validator';
|
|
|
|
export class MobileRefreshDto {
|
|
@IsString()
|
|
@MinLength(32)
|
|
@MaxLength(256)
|
|
refreshToken!: string;
|
|
}
|