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 IgnoredChannels { get; set; } = new(); }