LocChat/server/dto/create_user.dto.ts

7 lines
109 B
TypeScript
Raw Permalink Normal View History

2021-11-20 20:18:58 -05:00
export class CreateUserDto {
2021-12-03 20:31:24 -05:00
firstName: string;
lastName: string;
2021-11-20 20:18:58 -05:00
email: string;
password: string;
}