| 12345678910111213141516171819 |
- <?php
- namespace App\Game\BetBy;
- class RestrictionItem
- {
- public $sportId;
- public $categoryId;
- public $tournamentId;
- public $eventId;
- public function __construct(array $data)
- {
- $this->sportId = $data['sport_id'];
- $this->categoryId = $data['category_id'];
- $this->tournamentId = $data['tournament_id'];
- $this->eventId = $data['event_id'];
- }
- }
|