using System.Collections.Generic; namespace Knoks.Core.Exchanges { public class ExchangeSettings { public string ApiUrl { get; set; } public string UserName { get; set; } public string Password { get; set; } public string Token { get; set; } public IDictionary ReplaceSymbols { get; set; } public string[] AllowedCurrencies { get; set; } } }