delete username usecase

This commit is contained in:
sbriat
2023-07-07 11:11:36 +02:00
parent a95caefaf2
commit 28c6ca0f63
12 changed files with 274 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
import { IsNotEmpty, IsString } from 'class-validator';
export class DeleteUsernameRequestDto {
@IsString()
@IsNotEmpty()
name: string;
}