external_entities-8.x-2.x-dev/src/Annotation/DataProcessor.php
src/Annotation/DataProcessor.php
<?php
namespace Drupal\external_entities\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a data processor annotation object.
*
* @see \Drupal\external_entities\DataProcessor\DataProcessorManager
* @see plugin_api
*
* @Annotation
*/
class DataProcessor 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;
}
