sqrl-2.0.0-rc1/src/Annotation/SqrlAction.php
src/Annotation/SqrlAction.php
<?php
namespace Drupal\sqrl\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines sqrl_action annotation object.
*
* @Annotation
*/
class SqrlAction extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $title;
/**
* The description of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $description;
}
