mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
dev: Added cascade deletes to any tables which have guildconfigs FK, as well as to some other missing places
12 lines
326 B
C#
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; }
|
|
} |