You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
221 B
13 lines
221 B
package app.entities;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class SocialAuth {
|
|
public long vk_id = 0;
|
|
public long discord_id = 0;
|
|
|
|
public boolean haveAny() {
|
|
return vk_id != 0 || discord_id != 0;
|
|
}
|
|
}
|
|
|