rwadurian/backend/services/identity-service/identity-service/src/application/commands/bind-phone/bind-phone.command.ts

8 lines
170 B
TypeScript

export class BindPhoneCommand {
constructor(
public readonly userId: string,
public readonly phoneNumber: string,
public readonly smsCode: string,
) {}
}