vassago/Configuration.cs

16 lines
429 B
C#
Raw Normal View History

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