mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 14:18:20 -05:00
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
|
|
}
|
|
}
|
|
}
|