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

13 lines
369 B
C#

namespace NadekoBot.Core.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; }
}
}