Notifications M3 redesign (+ read marker support)

This commit is contained in:
Grishka
2023-05-27 13:31:01 +03:00
parent 92335d8678
commit 5c480b37b3
44 changed files with 1075 additions and 508 deletions

View File

@@ -0,0 +1,13 @@
package org.joinmastodon.android.model;
public class TimelineMarkers{
public Marker home, notifications;
@Override
public String toString(){
return "TimelineMarkers{"+
"home="+home+
", notifications="+notifications+
'}';
}
}