flag-8.x-4.x-dev/src/Annotation/FlagType.php
src/Annotation/FlagType.php
<?php
namespace Drupal\flag\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a FlagType annotation object.
*
* @Annotation
*/
class FlagType extends Plugin {
/**
* The title of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $title;
/**
* The entity type the flag type supports.
*
* @var string
*/
public $entity_type;
}
