8119ff9f83
make sure we don't keep adding penalties after first add "Other" penalty for future plugin use
23 lines
385 B
C#
23 lines
385 B
C#
using System;
|
|
using SharedLibraryCore;
|
|
|
|
namespace SharedLibraryCore.Database.Models
|
|
{
|
|
public partial class EFPenalty
|
|
{
|
|
public enum PenaltyType
|
|
{
|
|
Report,
|
|
Warning,
|
|
Flag,
|
|
Kick,
|
|
TempBan,
|
|
Ban,
|
|
Unban,
|
|
Any,
|
|
Unflag,
|
|
Other = 100
|
|
}
|
|
}
|
|
}
|