Choice.php 199 Bytes
<?php

namespace FootyRoom\App\Poll;

use FootyRoom\App\Dto;

class Choice extends Dto
{
    /**
     * @var string
     */
    public $text;

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