blob: 2a5aa0a71f02f595193e509abe2bf372cb45a28c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package ml.docilealligator.infinityforreddit.events;
public class SubmitVideoOrGifPostEvent {
public boolean postSuccess;
public boolean errorProcessingVideoOrGif;
public String errorMessage;
public SubmitVideoOrGifPostEvent(boolean postSuccess, boolean errorProcessingVideoOrGif, String errorMessage) {
this.postSuccess = postSuccess;
this.errorProcessingVideoOrGif = errorProcessingVideoOrGif;
this.errorMessage = errorMessage;
}
}
|