mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-10 09:00:53 +08:00
13 lines
190 B
Java
13 lines
190 B
Java
package com.openisle.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
/** Request to login. */
|
|
@Data
|
|
public class LoginRequest {
|
|
|
|
private String username;
|
|
private String password;
|
|
private String captcha;
|
|
}
|