blob: ed4273b6835dee2f929c18f70f0da3b4a928e645 (
plain) (
tree)
|
|
package ml.docilealligator.infinityforreddit.events;
public class ChangeHideTheNumberOfVotesEvent {
public boolean hideTheNumberOfVotes;
public ChangeHideTheNumberOfVotesEvent(boolean hideTheNumberOfVotes) {
this.hideTheNumberOfVotes = hideTheNumberOfVotes;
}
}
|