Poll.php
356 Bytes
<?php
namespace FootyRoom\Queries\Poll;
class Poll
{
/**
* @var string
*/
public $id;
/**
* @var int
*/
public $userId;
/**
* @var \FootyRoom\Queries\Poll\Choice[]
*/
public $choices;
/**
* @var int
*/
public $totalVotes;
/**
* @var int
*/
public $maxVotes;
}