<?php

declare(strict_types=1);

namespace Drupal\{{ machine_name }}\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines {{ plugin_type }} annotation object.
 *
 * @Annotation
 */
final class {{ class_prefix }} extends Plugin {

  /**
   * The plugin ID.
   */
  public readonly string $id;

  /**
   * The human-readable name of the plugin.
   *
   * @ingroup plugin_translatable
   */
  public readonly string $title;

  /**
   * The description of the plugin.
   *
   * @ingroup plugin_translatable
   */
  public readonly string $description;

}
