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

12 lines
326 B
C#

namespace NadekoBot.Db.Models;
public class AntiAltSetting
{
public int GuildConfigId { get; set; }
public int Id { get; set; }
public TimeSpan MinAge { get; set; }
public PunishmentAction Action { get; set; }
public int ActionDurationMinutes { get; set; }
public ulong? RoleId { get; set; }
}