Initial split of the modules
This commit is contained in:
12
NadekoBot.Core/Services/Database/Models/Warning.cs
Normal file
12
NadekoBot.Core/Services/Database/Models/Warning.cs
Normal file
@ -0,0 +1,12 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user