You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
346 B
22 lines
346 B
![]()
5 years ago
|
<?php
|
||
|
/* For licensing terms, see /license.txt */
|
||
|
|
||
![]()
5 years ago
|
namespace Chamilo\PluginBundle\Zoom\API;
|
||
![]()
5 years ago
|
|
||
![]()
5 years ago
|
trait Pagination
|
||
![]()
5 years ago
|
{
|
||
![]()
5 years ago
|
use JsonDeserializableTrait;
|
||
![]()
5 years ago
|
|
||
![]()
5 years ago
|
/** @var int */
|
||
![]()
5 years ago
|
public $page_count;
|
||
![]()
5 years ago
|
|
||
![]()
5 years ago
|
/** @var int counting from 1 */
|
||
![]()
5 years ago
|
public $page_number;
|
||
![]()
5 years ago
|
|
||
![]()
5 years ago
|
/** @var int */
|
||
![]()
5 years ago
|
public $page_size;
|
||
![]()
5 years ago
|
|
||
![]()
5 years ago
|
/** @var int */
|
||
![]()
5 years ago
|
public $total_records;
|
||
|
}
|