mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 09:41:19 +00:00
33 lines
634 B
C#
33 lines
634 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCore.DTO
|
|
{
|
|
public class Odd
|
|
{
|
|
public string Sport_nice;
|
|
public List<string> Teams;
|
|
public int Commence_time;
|
|
public string Home_team;
|
|
public List<OddSite> Sites;
|
|
|
|
}
|
|
|
|
public class OddSite
|
|
{
|
|
public string Site_key;
|
|
public string Site_nice;
|
|
public int Last_update;
|
|
public OddMatch OddMatch;
|
|
}
|
|
|
|
public class OddMatch
|
|
{
|
|
public double HomeOdd;
|
|
public double DrawOdd;
|
|
public double VisitOdd;
|
|
}
|
|
}
|