summaryrefslogtreecommitdiff
path: root/server/dto/create_user.dto.ts
blob: cf87fedd462c707664c2308e3eb931ae81e575e8 (plain)
1
2
3
4
5
export class CreateUserDto {
  name: string;
  email: string;
  password: string;
}