Reporting

This commit is contained in:
Grishka
2022-03-07 14:01:40 +03:00
parent abae198e89
commit 86892e4103
36 changed files with 1411 additions and 20 deletions

View File

@@ -0,0 +1,13 @@
package org.joinmastodon.android.model;
import com.google.gson.annotations.SerializedName;
public enum ReportReason{
PERSONAL,
@SerializedName("spam")
SPAM,
@SerializedName("violation")
VIOLATION,
@SerializedName("other")
OTHER
}