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;
|
namespace Myhm.Data;
|
||||||
|
|
||||||
public class Moderation
|
public class Moderation
|
||||||
|
@ -16,12 +18,21 @@ public enum ModerationTypes
|
||||||
Warn,
|
Warn,
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Get reasons from @MYHM and add them here
|
|
||||||
public enum ModerationReasons
|
public enum ModerationReasons
|
||||||
{
|
{
|
||||||
Spamming,
|
Advertising,
|
||||||
|
Bot,
|
||||||
Harassment,
|
Harassment,
|
||||||
HateSpeech,
|
Impersonation,
|
||||||
NSFW,
|
Phishing,
|
||||||
Other,
|
Raiding,
|
||||||
|
|
||||||
|
[StringValue("TOS")]
|
||||||
|
Tos,
|
||||||
|
|
||||||
|
[StringValue("NSFW")]
|
||||||
|
Nsfw,
|
||||||
|
|
||||||
|
[StringValue("Alt/Ban Evasion")]
|
||||||
|
BanEvasion,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue