13 lines
341 B
C#
13 lines
341 B
C#
using System.Threading;
|
|
using DSharpPlus.Interactivity;
|
|
using LaDOSE.DiscordBot.Service;
|
|
|
|
namespace LaDOSE.DiscordBot
|
|
{
|
|
public class Dependencies
|
|
{
|
|
internal InteractivityModule Interactivity { get; set; }
|
|
internal CancellationTokenSource Cts { get; set; }
|
|
public WebService WebService { get; set; }
|
|
}
|
|
} |