quiz_maker-1.0.6/src/Annotation/QuizMakerQuestion.php
src/Annotation/QuizMakerQuestion.php
<?php
namespace Drupal\quiz_maker\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines question annotation object.
*
* @Annotation
*/
final class QuizMakerQuestion extends Plugin {
/**
* The plugin ID.
*/
public readonly string $id;
/**
* The human-readable name of the plugin.
*
* @ingroup plugin_translatable
*/
public readonly string $title;
/**
* The description of the plugin.
*
* @ingroup plugin_translatable
*/
public readonly string $description;
}
