mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
13 lines
350 B
C#
13 lines
350 B
C#
#nullable disable
|
|
using NadekoBot.Services.Database.Models;
|
|
|
|
namespace NadekoBot.Modules.Administration;
|
|
|
|
public class PunishQueueItem
|
|
{
|
|
public PunishmentAction Action { get; set; }
|
|
public ProtectionType Type { get; set; }
|
|
public int MuteTime { get; set; }
|
|
public ulong? RoleId { get; set; }
|
|
public IGuildUser User { get; set; }
|
|
} |