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