Files
Chamilo/plugin/zoom/lib/API/CustomQuestion.php
2025-08-14 22:39:38 +02:00

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;
}