| 123456789101112131415161718192021 |
- <?php
- namespace App\Game\BetBy;
- class FreebetDataItem
- {
- public $type;
- public $minSelection;
- public $maxSelection;
- public $minOdd;
- public $maxOdd;
- public function __construct(array $data)
- {
- $this->type = $data['type'];
- $this->minSelection = $data['min_selection'];
- $this->maxSelection = $data['max_selection'];
- $this->minOdd = $data['min_odd'];
- $this->maxOdd = $data['max_odd'];
- }
- }
|