mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
13 lines
377 B
C#
13 lines
377 B
C#
#nullable disable
|
|
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class Warning : DbEntity
|
|
{
|
|
public ulong GuildId { get; set; }
|
|
public ulong UserId { get; set; }
|
|
public string Reason { get; set; }
|
|
public bool Forgiven { get; set; }
|
|
public string ForgivenBy { get; set; }
|
|
public string Moderator { get; set; }
|
|
public long Weight { get; set; }
|
|
} |