feat: onboarding signup journey

This commit is contained in:
Abdalhamid Alhamad
2025-07-27 13:15:54 +03:00
parent bf43e62b17
commit c493bd57e1
12 changed files with 234 additions and 10 deletions

View File

@ -0,0 +1,10 @@
import { ApiProperty } from '@nestjs/swagger';
export class SendRegisterOtpV2ResponseDto {
@ApiProperty()
maskedNumber!: string;
constructor(maskedNumber: string) {
this.maskedNumber = maskedNumber;
}
}