refactor(hashtags): add HashtagUpdatedEvent

This commit is contained in:
LucasGGamerM
2025-04-01 11:45:30 -03:00
parent 3c31060970
commit eedcb2f62b

View File

@@ -0,0 +1,11 @@
package org.joinmastodon.android.events;
public class HashtagUpdatedEvent {
public final String name;
public final boolean following;
public HashtagUpdatedEvent(String name, boolean following) {
this.name = name;
this.following = following;
}
}