|
export class RecoverByPhoneCommand {
|
|
constructor(
|
|
public readonly accountSequence: number,
|
|
public readonly phoneNumber: string,
|
|
public readonly smsCode: string,
|
|
public readonly newDeviceId: string,
|
|
public readonly deviceName: string | undefined,
|
|
) {}
|
|
}
|