7 lines
131 B
TypeScript
7 lines
131 B
TypeScript
export declare class RegisterPasswordDto {
|
|
phone: string;
|
|
username: string;
|
|
password: string;
|
|
fullName?: string;
|
|
}
|