mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-10 00:51:00 +08:00
13 lines
239 B
Java
13 lines
239 B
Java
package com.openisle.service;
|
|
|
|
import com.openisle.model.User;
|
|
import lombok.Value;
|
|
|
|
/** Result for OAuth authentication indicating whether a new user was created. */
|
|
@Value
|
|
public class AuthResult {
|
|
User user;
|
|
boolean newUser;
|
|
}
|
|
|