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
|
|
|
|
|
|
{
|
|
|
|
|
|
internal class Dependencies
|
|
|
|
|
|
{
|
|
|
|
|
|
internal InteractivityModule Interactivity { get; set; }
|
|
|
|
|
|
internal CancellationTokenSource Cts { get; set; }
|
2018-10-04 01:32:33 +02:00
|
|
|
|
public ChallongeService ChallongeService { get; set; }
|
2018-10-04 00:29:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|