feat: add moderation reasons to enum (#11)
feat: add moderation reasons to enum (#11)
This commit is contained in:
parent
2b92a8089b
commit
4ed820999a
1 changed files with 16 additions and 5 deletions
|
@ -1,3 +1,5 @@
|
|||
using EnumStringValues;
|
||||
|
||||
namespace Myhm.Data;
|
||||
|
||||
public class Moderation
|
||||
|
@ -16,12 +18,21 @@ public enum ModerationTypes
|
|||
Warn,
|
||||
}
|
||||
|
||||
// TODO: Get reasons from @MYHM and add them here
|
||||
public enum ModerationReasons
|
||||
{
|
||||
Spamming,
|
||||
Advertising,
|
||||
Bot,
|
||||
Harassment,
|
||||
HateSpeech,
|
||||
NSFW,
|
||||
Other,
|
||||
Impersonation,
|
||||
Phishing,
|
||||
Raiding,
|
||||
|
||||
[StringValue("TOS")]
|
||||
Tos,
|
||||
|
||||
[StringValue("NSFW")]
|
||||
Nsfw,
|
||||
|
||||
[StringValue("Alt/Ban Evasion")]
|
||||
BanEvasion,
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue