mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
13 lines
319 B
C#
13 lines
319 B
C#
// ReSharper disable InconsistentNaming
|
|
#nullable disable
|
|
namespace NadekoBot.Modules.Utility;
|
|
|
|
public class EvalGlobals
|
|
{
|
|
public ICommandContext ctx;
|
|
public Utility.EvalCommands self;
|
|
public IUser user;
|
|
public IMessageChannel channel;
|
|
public IGuild guild;
|
|
public IServiceProvider services;
|
|
} |