LocChat/server/dto/create_user.dto.ts

6 lines
84 B
TypeScript
Raw Normal View History

2021-11-20 20:18:58 -05:00
export class CreateUserDto {
name: string;
email: string;
password: string;
}