mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
8 lines
187 B
C#
8 lines
187 B
C#
#nullable disable
|
|
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class VcRoleInfo : DbEntity
|
|
{
|
|
public ulong VoiceChannelId { get; set; }
|
|
public ulong RoleId { get; set; }
|
|
} |