19 lines
319 B
PHP
19 lines
319 B
PHP
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\PluginBundle\Zoom\API;
|
|
|
|
/**
|
|
* Class CustomQuestion.
|
|
* A list of instances of this class is included in a MeetingRegistrant instance.
|
|
*/
|
|
class CustomQuestion
|
|
{
|
|
/** @var string */
|
|
public $title;
|
|
|
|
/** @var string */
|
|
public $value;
|
|
}
|