| 123456789101112131415161718 |
- <?php
- namespace App\Game\BetBy;
- class PlayerDataItem
- {
- public $externalPlayerId;
- public $currency;
- public $amount;
- public $forceActivated;
- public function __construct(array $data)
- {
- $this->externalPlayerId = $data['external_player_id'];
- $this->currency = $data['currency'];
- $this->amount = $data['amount'];
- $this->forceActivated = $data['force_activated'];
- }
- }
|