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

public class ChangeShowAvatarOnTheRightInTheNavigationDrawerEvent {
    public boolean showAvatarOnTheRightInTheNavigationDrawer;

    public ChangeShowAvatarOnTheRightInTheNavigationDrawerEvent(boolean showAvatarOnTheRightInTheNavigationDrawer) {
        this.showAvatarOnTheRightInTheNavigationDrawer = showAvatarOnTheRightInTheNavigationDrawer;
    }
}