2018-10-04 00:29:25 +02:00
|
|
|
|
using System.Threading;
|
|
|
|
|
|
using DSharpPlus.Interactivity;
|
2018-10-04 01:32:33 +02:00
|
|
|
|
using LaDOSE.DiscordBot.Service;
|
2018-10-04 00:29:25 +02:00
|
|
|
|
|
|
|
|
|
|
namespace LaDOSE.DiscordBot
|
|
|
|
|
|
{
|
2019-02-20 21:54:21 +01:00
|
|
|
|
public class Dependencies
|
2018-10-04 00:29:25 +02:00
|
|
|
|
{
|
|
|
|
|
|
internal InteractivityModule Interactivity { get; set; }
|
|
|
|
|
|
internal CancellationTokenSource Cts { get; set; }
|
2019-03-16 12:22:52 +01:00
|
|
|
|
public WebService WebService { get; set; }
|
2018-10-04 00:29:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|