forked from Fascinated/Bat
add spotify feature
This commit is contained in:
@ -2,12 +2,10 @@ package cc.fascinated.bat.model;
|
||||
|
||||
import cc.fascinated.bat.common.ProfileHolder;
|
||||
import cc.fascinated.bat.service.DiscordService;
|
||||
import jakarta.annotation.PostConstruct;
|
||||
import lombok.*;
|
||||
import net.dv8tion.jda.api.entities.Guild;
|
||||
import org.springframework.data.annotation.Id;
|
||||
import org.springframework.data.mongodb.core.mapping.Document;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import java.util.Calendar;
|
||||
import java.util.Date;
|
||||
@ -16,13 +14,16 @@ import java.util.Date;
|
||||
* @author Fascinated (fascinated7)
|
||||
*/
|
||||
@RequiredArgsConstructor
|
||||
@Getter @Setter
|
||||
@Getter
|
||||
@Setter
|
||||
@Document(collection = "guilds")
|
||||
public class BatGuild extends ProfileHolder {
|
||||
/**
|
||||
* The ID of the guild
|
||||
*/
|
||||
@NonNull @Id private final String id;
|
||||
@NonNull
|
||||
@Id
|
||||
private final String id;
|
||||
|
||||
/**
|
||||
* The time this guild was joined
|
||||
@ -64,7 +65,9 @@ public class BatGuild extends ProfileHolder {
|
||||
return DiscordService.JDA.getGuildById(id);
|
||||
}
|
||||
|
||||
@AllArgsConstructor @Getter @Setter
|
||||
@AllArgsConstructor
|
||||
@Getter
|
||||
@Setter
|
||||
public static class Premium {
|
||||
/**
|
||||
* The time the premium was activated
|
||||
|
Reference in New Issue
Block a user