LocChat/server/dto/create_user.dto.ts
2021-12-03 18:31:24 -07:00

7 lines
109 B
TypeScript

export class CreateUserDto {
firstName: string;
lastName: string;
email: string;
password: string;
}