mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
7 lines
197 B
C#
7 lines
197 B
C#
namespace NadekoBot.Extensions;
|
|
|
|
public static class BotCredentialsExtensions
|
|
{
|
|
public static bool IsOwner(this IBotCredentials creds, IUser user)
|
|
=> creds.OwnerIds.Contains(user.Id);
|
|
} |