Knocks/BackEnd/Knoks.Core/Entities/Exchange.cs

22 lines
405 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Knoks.Core.Entities
{
public class Exchange
{
public short ExchangeId { get; set; }
public string ExchangeName { get; set; }
public List<CurrencyPair> CurrencyPairs { get; set; }
}
//public enum CurrPair
//{
// BTC,
// ETH,
// USD,
// USDT
//}
}