Files
LaDOSE/LaDOSE.Src/LaDOSE.DiscordBot/Dependencies.cs
2019-02-20 21:54:21 +01:00

15 lines
407 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 ChallongeService ChallongeService { get; set; }
public TodoService TodoService { get; set; }
}
}