LocChat/server/dto/create_user.dto.ts
2021-11-20 18:18:58 -07:00

6 lines
84 B
TypeScript

export class CreateUserDto {
name: string;
email: string;
password: string;
}