mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
11 lines
272 B
C#
11 lines
272 B
C#
#nullable disable
|
|
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; }
|
|
}
|