BettingArbitrageBot/Arbitrage/BookerkeeperEntityComparerConfiguration.cs

15 lines
499 B
C#
Raw Permalink Normal View History

2022-12-07 12:48:00 +11:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Arbitrage
{
public class BookerkeeperEntityComparerConfiguration
{
public Dictionary<Bookkeeper, Dictionary<Sport, Dictionary<string, List<string>>>> KnownCorrespondingMarketNames { get; set; } = null!;
public Dictionary<Bookkeeper, Dictionary<Sport, Dictionary<string, List<string>>>> KnownCorrespondingOddsNames { get; set; } = null!;
}
}