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