NadekoBot/NadekoBot.Core/Services/Database/Models/Warning.cs

13 lines
369 B
C#
Raw Normal View History

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; }
}
}