Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / file_mdm / src / Plugin / Annotation / FileMetadata.php
1 <?php
2
3 namespace Drupal\file_mdm\Plugin\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7 /**
8  * Defines a Plugin annotation object for FileMetadata plugins.
9  *
10  * @Annotation
11  */
12 class FileMetadata extends Plugin {
13
14   /**
15    * The plugin ID.
16    *
17    * @var string
18    */
19   public $id;
20
21   /**
22    * The title of the plugin.
23    *
24    * The string should be wrapped in a @Translation().
25    *
26    * @var \Drupal\Core\Annotation\Translation
27    *
28    * @ingroup plugin_translatable
29    */
30   public $title;
31
32   /**
33    * An informative description of the plugin.
34    *
35    * The string should be wrapped in a @Translation().
36    *
37    * @var \Drupal\Core\Annotation\Translation
38    *
39    * @ingroup plugin_translatable
40    */
41   public $help;
42
43 }