Port UserRepository and remove OW stuff
This commit is contained in:
parent
d2f31d0730
commit
15034d63a3
20 changed files with 176 additions and 328 deletions
|
@ -1,7 +1,29 @@
|
|||
namespace Geekbot.net.Database.Models
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Geekbot.net.Database.Models
|
||||
{
|
||||
public class GuildSettingsModel
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
|
||||
[Required]
|
||||
public long GuildId { get; set; }
|
||||
|
||||
public bool Ping { get; set; }
|
||||
|
||||
public bool Hui { get; set; }
|
||||
|
||||
public long ModChannel { get; set; }
|
||||
|
||||
public string WelcomeMessage { get; set; }
|
||||
|
||||
public bool ShowDelete { get; set; }
|
||||
|
||||
public bool ShowLeave { get; set; }
|
||||
|
||||
public string WikiLang { get; set; }
|
||||
|
||||
public string Language { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue