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