#nullable disable namespace NadekoBot.Db.Models; public class AntiRaidSetting : DbEntity { public int GuildConfigId { get; set; } public int UserThreshold { get; set; } public int Seconds { get; set; } public PunishmentAction Action { get; set; } /// /// Duration of the punishment, in minutes. This works only for supported Actions, like: /// Mute, Chatmute, Voicemute, etc... /// public int PunishDuration { get; set; } }