forked from EllieBotDevs/elliebot
20 lines
No EOL
548 B
C#
20 lines
No EOL
548 B
C#
#nullable disable
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace EllieBot.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; }
|
|
|
|
/// <summary>
|
|
/// Duration of the punishment, in minutes. This works only for supported Actions, like:
|
|
/// Mute, Chatmute, Voicemute, etc...
|
|
/// </summary>
|
|
public int PunishDuration { get; set; }
|
|
} |