2017-10-13 04:14:54 +00:00
|
|
|
|
namespace NadekoBot.Core.Services.Database.Models
|
2016-08-26 17:25:54 +00:00
|
|
|
|
{
|
|
|
|
|
public class SelfAssignedRole : DbEntity
|
|
|
|
|
{
|
|
|
|
|
public ulong GuildId { get; set; }
|
|
|
|
|
public ulong RoleId { get; set; }
|
2017-10-21 10:13:31 +00:00
|
|
|
|
|
|
|
|
|
public int Group { get; set; }
|
2017-11-07 13:48:39 +00:00
|
|
|
|
public int LevelRequirement { get; set; }
|
2016-08-26 17:25:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|