Files
LaDOSE/LaDOSE.Src/LaDOSE.DiscordBot/Dependencies.cs
Darkstack 2fe08f938a REST to a .Net Standard Library
Test REST in discord bot and WPF
Small improvements
2019-03-16 12:22:52 +01:00

15 lines
457 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; }
public WebService WebService { get; set; }
}
}