25 lines
402 B
PHP
25 lines
402 B
PHP
|
<?php
|
||
|
|
||
|
namespace Skobkin\Bundle\PointToolsBundle\Entity;
|
||
|
|
||
|
/**
|
||
|
* Data Transfer Object for top users list
|
||
|
*/
|
||
|
class TopUserDTO
|
||
|
{
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
public $login;
|
||
|
|
||
|
/**
|
||
|
* @var int
|
||
|
*/
|
||
|
public $subscribersCount;
|
||
|
|
||
|
public function __construct($login, $subscribersCount)
|
||
|
{
|
||
|
$this->login = $login;
|
||
|
$this->subscribersCount = $subscribersCount;
|
||
|
}
|
||
|
}
|