Refactor code structure for improved readability and maintainability
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using TradingBot.Models;
|
||||
|
||||
namespace TradingBot.Services;
|
||||
|
||||
public interface IMarketDataService
|
||||
{
|
||||
Task<List<MarketPrice>> GetMarketPricesAsync(List<string> symbols);
|
||||
Task<MarketPrice?> GetPriceAsync(string symbol);
|
||||
}
|
||||
Reference in New Issue
Block a user