mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
12 lines
273 B
C#
12 lines
273 B
C#
using Discord;
|
|
|
|
namespace NadekoBot.Core.Services.Database.Models
|
|
{
|
|
public class DiscordPermOverride : DbEntity
|
|
{
|
|
public GuildPerm Perm { get; set; }
|
|
|
|
public ulong? GuildId { get; set; }
|
|
public string Command { get; set; }
|
|
}
|
|
} |