feat: show extended description in info

This commit is contained in:
FineFindus
2023-05-22 14:52:04 +02:00
parent 9897b8bfcd
commit 64fc052c55
3 changed files with 63 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
package org.joinmastodon.android.model;
import org.joinmastodon.android.api.RequiredField;
import org.parceler.Parcel;
import java.util.List;
@Parcel
public class ExtendedDescription extends BaseModel{
@RequiredField
public String content;
@RequiredField
public String updatedAt;
@Override
public String toString() {
return "ExtendedDescription{" +
"content='" + content + '\'' +
", updatedAt='" + updatedAt + '\'' +
'}';
}
}