aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/ml/docilealligator/infinityforreddit/events/ChangePostFeedMaxResolutionEvent.java
blob: ac83ae4a003ab6d2863ded4a3c9c2cb0507428b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
package ml.docilealligator.infinityforreddit.events;

public class ChangePostFeedMaxResolutionEvent {
    public int postFeedMaxResolution;

    public ChangePostFeedMaxResolutionEvent(int postFeedMaxResolution) {
        this.postFeedMaxResolution = postFeedMaxResolution;
    }
}