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

17 lines
454 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Arbitrage
{
public class UnibetServiceConfiguration
{
public string BaseEventUrl { get; set; } = null!;
public string BaseSiteUrl { get; set; } = null!;
public string GetOddsUrl { get; set; } = null!;
public Dictionary<Sport, string> GetSportEventsUrls { get; set; } = null!;
}
}