Files
nadekobot/NadekoBot.Core/Services/Database/Models/WarningPunishment.cs
2021-09-06 21:29:22 +02:00

11 lines
292 B
C#

namespace NadekoBot.Core.Services.Database.Models
{
public class WarningPunishment : DbEntity
{
public int Count { get; set; }
public PunishmentAction Punishment { get; set; }
public int Time { get; set; }
public ulong? RoleId { get; set; }
}
}