This repository has been archived on 2023-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
discord-bot-shtik/Configuration.cs

15 lines
406 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.IO;
using Newtonsoft.Json;
namespace vassago
{
public class Configuration
{
2023-07-03 12:51:23 -04:00
public string ExchangePairsLocation { get; set; }
public IEnumerable<string> DiscordTokens { get; set; }
2023-07-03 12:51:23 -04:00
public IEnumerable<Tuple<string, string>> TwitchTokens { get; set; }
public string DBConnectionString { get; set; }
}
}