commerce-8.x-2.8/modules/tax/src/Annotation/CommerceTaxType.php
modules/tax/src/Annotation/CommerceTaxType.php
<?php
namespace Drupal\commerce_tax\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines the tax type plugin annotation object.
*
* Plugin namespace: Plugin\Commerce\TaxType.
*
* @Annotation
*/
class CommerceTaxType extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the plugin.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation
*/
public $label;
}
