Choice.php 268 Bytes
<?php

namespace FootyRoom\Queries\Poll;

class Choice
{
    /**
     * @var int
     */
    public $id;

    /**
     * @var string
     */
    public $text;

    /**
     * @var string
     */
    public $image;

    /**
     * @var int
     */
    public $votes;
}