mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
12 lines
297 B
C#
12 lines
297 B
C#
namespace NadekoBot.Core.Services.Database.Models
|
|
{
|
|
public class SelfAssignedRole : DbEntity
|
|
{
|
|
public ulong GuildId { get; set; }
|
|
public ulong RoleId { get; set; }
|
|
|
|
public int Group { get; set; }
|
|
public int LevelRequirement { get; set; }
|
|
}
|
|
}
|