14 lines
421 B
C#
14 lines
421 B
C#
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<string, string> ReplaceSymbols { get; set; }
|
|
public string[] AllowedCurrencies { get; set; }
|
|
}
|
|
} |