using FluentMigrator.Builders.Create.Table; using Nop.Core.Domain.Gdpr; namespace Nop.Data.Mapping.Builders.Gdpr; /// /// Represents a GDPR log entity builder /// public partial class GdprLogBuilder : NopEntityBuilder { #region Methods /// /// Apply entity configuration /// /// Create table expression builder public override void MapEntity(CreateTableExpressionBuilder table) { } #endregion }