auth/src/modules/authentication/interface/grpc-controllers/dtos/delete-authentication.reque...

8 lines
153 B
TypeScript

import { IsNotEmpty, IsString } from 'class-validator';
export class DeleteAuthenticationRequestDto {
@IsString()
@IsNotEmpty()
userId: string;
}