You are here

DataStreamType.php in farmOS 2.x

File

modules/core/data_stream/src/Annotation/DataStreamType.php
View source
<?php

namespace Drupal\data_stream\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines the data stream type plugin annotation object.
 *
 * Plugin namespace: Plugin\DataStream\DataStreamType.
 *
 * @see plugin_api
 *
 * @Annotation
 */
class DataStreamType extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The data stream type label.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $label;

}

Classes

Namesort descending Description
DataStreamType Defines the data stream type plugin annotation object.