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

11 lines
247 B
C#
Raw Normal View History

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; }
2016-08-26 17:25:54 +00:00
}
}