BettingArbitrageBot/Arbitrage/INotificationChannel.cs
Harry Stuart 2f118c5bcb Add code
2022-12-07 12:48:00 +11:00

14 lines
383 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Arbitrage
{
public interface INotificationChannel
{
public bool Notify(Sport sport, Event @event, Market market, IEnumerable<BookkeeperMarket> bookkeeperMarkets, double arbitrage, IEnumerable<BookkeeperOdds> bestBookkeeperOdds);
}
}