aboutsummaryrefslogblamecommitdiff
path: root/app/src/main/java/ml/docilealligator/infinityforreddit/events/SubmitGalleryPostEvent.java
blob: fcab85cd911e5f41b9eaf22d5f4a887cc174976c (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                    

                                     
                          

                               
                                                                                             
                                       
                               


                                         
package ml.docilealligator.infinityforreddit.events;

public class SubmitGalleryPostEvent {
    public boolean postSuccess;
    public String postUrl;
    public String errorMessage;

    public SubmitGalleryPostEvent(boolean postSuccess, String postUrl, String errorMessage) {
        this.postSuccess = postSuccess;
        this.postUrl = postUrl;
        this.errorMessage = errorMessage;
    }
}