diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/Book.php b/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/Book.php
new file mode 100644
index 0000000..f6ff932
--- /dev/null
+++ b/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/Book.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate\Plugin\migrate\destination\Book.
+ */
+
+namespace Drupal\migrate\Plugin\migrate\destination;
+
+use Drupal\Core\Entity\EntityInterface;
+use Drupal\migrate\Row;
+
+/**
+ * @MigrateDestination(
+ *   id = "book",
+ *   provider = "book"
+ * )
+ */
+class Book extends EntityContentBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static function getEntityTypeId($plugin_id) {
+    return 'node';
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function updateEntity(EntityInterface $entity, Row $row) {
+    $entity->book = $row->getDestinationProperty('book');
+  }
+
+}
