Skip to content

Commit

Permalink
add fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jalpp committed Apr 24, 2024
1 parent 4a304e5 commit d05a131
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/dojo/bot/Commands/Helper.java
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,4 @@ public void startHelper(SlashCommandInteractionEvent event){



}
}
34 changes: 34 additions & 0 deletions src/main/java/dojo/bot/Model/UserObject.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
package dojo.bot.Model;


import chariot.Client;
import net.dv8tion.jda.api.EmbedBuilder;

/**
* Class that represents a User
*/
public class UserObject {

private Client client;
private EmbedBuilder embedBuilder;
private String userID;


public UserObject(Client client, String userParsing){
this.client = client;
this.userID = userParsing.toLowerCase().trim();
}


public Client getClient(){
return this.client;
}

public String getUserID(){
return this.userID;
}




}

0 comments on commit d05a131

Please sign in to comment.