F2.2: agregar DTO de refresh móvil

This commit is contained in:
2026-09-05 20:20:16 -03:00
parent 1b57dcc850
commit acc17bf291
@@ -0,0 +1,8 @@
import { IsString, MaxLength, MinLength } from 'class-validator';
export class MobileRefreshDto {
@IsString()
@MinLength(32)
@MaxLength(256)
refreshToken!: string;
}