1 2 3 4 5 6 7 8 9 10 11
package ml.docilealligator.infinityforreddit.events; import ml.docilealligator.infinityforreddit.post.Post; public class PostUpdateEventToPostDetailFragment { public final Post post; public PostUpdateEventToPostDetailFragment(Post post) { this.post = post; } }