mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
13 lines
437 B
C#
13 lines
437 B
C#
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class AntiSpamSetting : DbEntity
|
|
{
|
|
public int GuildConfigId { get; set; }
|
|
public GuildConfig GuildConfig { 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();
|
|
} |