13 lines
369 B
C#
Raw Normal View History

namespace NadekoBot.Core.Services.Database.Models
2017-03-30 03:51:54 +02: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; }
}
}