--- /dev/null
+<?php
+/*
+ +--------------------------------------------------------------------+
+ | Copyright CiviCRM LLC. All rights reserved. |
+ | |
+ | This work is published under the GNU AGPLv3 license with some |
+ | permitted exceptions and without any warranty. For full license |
+ | and copyright information, see https://civicrm.org/licensing |
+ +--------------------------------------------------------------------+
+ */
+namespace Civi\Api4;
+
+use Civi\Api4\Generic\DAOEntity;
+use Civi\Api4\Generic\Traits\ReadOnlyEntity;
+
+/**
+ * MembershipLog entity.
+ *
+ * @since 5.69
+ * @package Civi\Api4
+ */
+class MembershipLog extends DAOEntity {
+ use ReadOnlyEntity;
+
+}