mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
9 lines
256 B
C#
9 lines
256 B
C#
namespace NadekoBot.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; }
|
|
} |