external_entities-8.x-2.x-dev/src/Annotation/StorageClient.php
src/Annotation/StorageClient.php
<?php
namespace Drupal\external_entities\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines an external entity storage client annotation object.
*
* @see \Drupal\external_entities\StorageClient\StorageClientManager
* @see plugin_api
*
* @Annotation
*/
class StorageClient extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-friendly name of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $label;
/**
* A description of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $description;
}
