8ab89e113d
add unflag as a penalty show bans/tempbans even after they've expired on penalty list continue making alias links great again
22 lines
370 B
C#
22 lines
370 B
C#
using System;
|
|
using SharedLibraryCore;
|
|
|
|
namespace SharedLibraryCore.Objects
|
|
{
|
|
public class Penalty : Database.Models.EFPenalty
|
|
{
|
|
public enum PenaltyType
|
|
{
|
|
Report,
|
|
Warning,
|
|
Flag,
|
|
Kick,
|
|
TempBan,
|
|
Ban,
|
|
Unban,
|
|
Any,
|
|
Unflag
|
|
}
|
|
}
|
|
}
|