impl drag feature
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 43s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 43s
This commit is contained in:
@ -0,0 +1,50 @@
|
||||
package cc.fascinated.bat.features.drag;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.Setter;
|
||||
import net.dv8tion.jda.api.entities.Member;
|
||||
import net.dv8tion.jda.api.entities.Message;
|
||||
import net.dv8tion.jda.api.entities.channel.concrete.VoiceChannel;
|
||||
import net.dv8tion.jda.api.interactions.InteractionHook;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author Fascinated (fascinated7)
|
||||
*/
|
||||
@RequiredArgsConstructor
|
||||
@Getter @Setter
|
||||
public class DragRequest {
|
||||
/**
|
||||
* The date the request was made
|
||||
*/
|
||||
private final Date requestDate = new Date();
|
||||
|
||||
/**
|
||||
* The user that wants to join the voice channel
|
||||
*/
|
||||
private final Member member;
|
||||
|
||||
/**
|
||||
* The user that the member wants to join
|
||||
*/
|
||||
private final Member target;
|
||||
|
||||
/**
|
||||
* The voice channel the user wants to join
|
||||
*/
|
||||
private final VoiceChannel voiceChannel;
|
||||
|
||||
/**
|
||||
* The interaction hook that the request was made from
|
||||
*/
|
||||
private final InteractionHook interactionHook;
|
||||
|
||||
/**
|
||||
* The request message sent in the voice channel
|
||||
*/
|
||||
private Message requestMessage;
|
||||
|
||||
}
|
Reference in New Issue
Block a user