From 7ccfcbe0a438bf80a21f308b926c54d1678b670d Mon Sep 17 00:00:00 2001 From: RheaAyase Date: Mon, 14 Oct 2024 17:05:16 +0100 Subject: [PATCH] +ban limit --- Entities/ServerConfig.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Entities/ServerConfig.cs b/Entities/ServerConfig.cs index 758ca6b..a50b9b5 100644 --- a/Entities/ServerConfig.cs +++ b/Entities/ServerConfig.cs @@ -175,6 +175,9 @@ public class ServerConfig [Column("operator_roleid")] public guid OperatorRoleId{ get; set; } = 0; + [Column("ban_limit")] + public int BanLimit{ get; set; } = 10; + [Column("ban_duration", TypeName = "varchar(255)")] public string BanDuration{ get; set; } = "";