mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-03-09 09:09:52 +00:00
created concept of auto load macros, these are macro files which are loaded automatically on startup and can be used in any template
changed assignable post config to be a full emote instead
This commit is contained in:
@@ -1,21 +1,19 @@
|
||||
package dev.sheldan.abstracto.assignableroles.models.templates;
|
||||
|
||||
|
||||
import dev.sheldan.abstracto.core.models.database.ARole;
|
||||
import dev.sheldan.abstracto.core.models.FullEmote;
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import net.dv8tion.jda.api.entities.Emote;
|
||||
import net.dv8tion.jda.api.entities.Role;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
@Builder
|
||||
public class AssignablePostConfigRole {
|
||||
private Emote emote;
|
||||
private String description;
|
||||
private Integer position;
|
||||
private Boolean inline;
|
||||
private ARole role;
|
||||
private FullEmote emote;
|
||||
private Role awardedRole;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user