Try your search with a different keyword or use * as a wildcard.
using FluentMigrator.Builders.Create.Table;
using Nop.Core.Domain.Gdpr;
namespace Nop.Data.Mapping.Builders.Gdpr;
/// <summary>
/// Represents a GDPR log entity builder
/// </summary>
public partial class GdprLogBuilder : NopEntityBuilder<GdprLog>
{
#region Methods
/// <summary>
/// Apply entity configuration
/// </summary>
/// <param name="table">Create table expression builder</param>
public override void MapEntity(CreateTableExpressionBuilder table)
{
}
#endregion
}