// User Entity

export class CreateUserDTO {
  username: string;
  email: string;
  password: string;
}
