Files
nadekobot/src/NadekoBot/Db/Models/anti/AntiSpamSetting.cs
2024-05-18 22:34:34 +00:00

13 lines
395 B
C#

namespace NadekoBot.Db.Models;
#nullable disable
public class AntiSpamSetting : DbEntity
{
public int GuildConfigId { get; set; }
public PunishmentAction Action { get; set; }
public int MessageThreshold { get; set; } = 3;
public int MuteTime { get; set; }
public ulong? RoleId { get; set; }
public HashSet<AntiSpamIgnore> IgnoredChannels { get; set; } = new();
}