BettingArbitrageBot/Arbitrage/LadbrokesServiceConfiguration.cs

24 lines
651 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 LadbrokesServiceConfiguration
{
public string BaseEventUrl { get; set; } = null!;
public string BaseSiteUrl { get; set; } = null!;
public string GetEventsUrl { get; set; } = null!;
public string GetOddsUrl { get; set; } = null!;
public ICollection<Category> Categories { get; set; } = null!;
public class Category
{
public string Id { get; set; } = null!;
public Sport Sport { get; set; }
}
}
}