CommentUserInfo.php 420 Bytes
<?php

namespace FootyRoom\Queries\Comment;

class CommentUserInfo
{
    /**
     * @var int
     */
    public $postCount;

    /**
     * @var int
     */
    public $commentCount;

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

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

    /**
     * @var int
     */
    public $userRole;

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