Better char counter and custom emoji in compose
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package org.joinmastodon.android.model;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class EmojiCategory{
|
||||
public String title;
|
||||
public List<Emoji> emojis;
|
||||
|
||||
public EmojiCategory(String title, List<Emoji> emojis){
|
||||
this.title=title;
|
||||
this.emojis=emojis;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user