14 lines
325 B
C#
14 lines
325 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Knoks.CryptoExchanges.Entities
|
|
{
|
|
public class KnokExchangeData
|
|
{
|
|
public List<Tuple<string, string>> TradingPairs { get; set; }
|
|
public string ExchangeName { get; set; }
|
|
public int ExchangeId { get; set; }
|
|
}
|
|
}
|