public void deleteReaction(Emote emote, User user)
 {
     RestApiClient.DELET_THIS($"channels/{channelID}/messages/{ID}/reactions/{emote.ToString()}/{user.ID}");
 }
 public void addReaction(Emote emote)
 {
     //433261288668266507
     RestApiClient.PUT($"channels/{channelID}/messages/{ID}/reactions/{emote.ToString()}/@me");
 }
 public void deleteOwnReaction(Emote emote)
 {
     RestApiClient.DELET_THIS($"channels/{channelID}/messages/{ID}/reactions/{emote.ToString()}/@me");
 }