Prediction.php
359 Bytes
<?php
namespace FootyRoom\Queries\Predictor;
class Prediction
{
/** @var int */
public $userId;
/** @var int */
public $matchId;
/** @var int */
public $homeScore;
/** @var int */
public $awayScore;
/** @var int */
public $stake;
/** @var int */
public $win;
/** @var bool */
public $settled;
}