Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

GdprLogBuilder.cs

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
}