mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-09 16:41:04 +08:00
14 lines
270 B
Java
14 lines
270 B
Java
package com.openisle.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
/** Request to register a new user. */
|
|
@Data
|
|
public class RegisterRequest {
|
|
private String username;
|
|
private String email;
|
|
private String password;
|
|
private String captcha;
|
|
private String inviteToken;
|
|
}
|