IW4M-Admin/SharedLibraryCore/Objects/Penalty.cs
RaidMax 8ab89e113d clean up log reader/make it output more useful message if things go wrong
add unflag as a penalty
show bans/tempbans even after they've expired on penalty list
continue making alias links great again
2019-04-05 13:34:03 -05:00

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
}
}
}