megalodon/mastodon/src/main/java/org/joinmastodon/android/events/ListCreatedEvent.java

14 lines
300 B
Java

package org.joinmastodon.android.events;
import org.joinmastodon.android.model.FollowList;
public class ListCreatedEvent{
public final String accountID;
public final FollowList list;
public ListCreatedEvent(String accountID, FollowList list){
this.accountID=accountID;
this.list=list;
}
}