commerce_license-8.x-2.x-dev/src/Annotation/CommerceLicenseType.php
src/Annotation/CommerceLicenseType.php
<?php
namespace Drupal\commerce_license\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines the license type plugin annotation object.
*
* Plugin namespace: Plugin\Commerce\LicenseType.
*
* @see plugin_api
*
* @Annotation
*/
class CommerceLicenseType extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The license type label.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $label;
}
