mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-08 00:16:27 +00:00
14 lines
248 B
C#
14 lines
248 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ConsoleClient.Exchanges
|
|
{
|
|
public interface IExchange
|
|
{
|
|
Task<decimal> GetPrice(string symbol);
|
|
}
|
|
}
|