2017-10-13 04:14:54 +00:00
|
|
|
|
namespace NadekoBot.Core.Services.Database.Models
|
2017-03-30 01:51:54 +00:00
|
|
|
|
{
|
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|