blob: 1fb29aa4b4cddc4fdbe34e6ff0f72fa651c77296 (
plain) (
tree)
|
|
package ml.docilealligator.infinityforreddit.events;
public class ChangeShowAbsoluteNumberOfVotesEvent {
public boolean showAbsoluteNumberOfVotes;
public ChangeShowAbsoluteNumberOfVotesEvent(boolean showAbsoluteNumberOfVotes) {
this.showAbsoluteNumberOfVotes = showAbsoluteNumberOfVotes;
}
}
|