MaternAlert / src /auth /dto /refresh-token.dto.ts
Auspicious14's picture
Initial backend deployment with Docker and Cron jobs
f78b36a
Raw
History Blame Contribute Delete
146 Bytes
import { IsString } from "class-validator";
/**
* Refresh Token DTO
*/
export class RefreshTokenDto {
@IsString()
refreshToken!: string;
}