22 lines
520 B
C#
22 lines
520 B
C#
using FluentMigrator.Builders.Create.Table;
|
|
using Nop.Core.Domain.Media;
|
|
|
|
namespace Nop.Data.Mapping.Builders.Media;
|
|
|
|
/// <summary>
|
|
/// Represents a download entity builder
|
|
/// </summary>
|
|
public partial class DownloadBuilder : NopEntityBuilder<Download>
|
|
{
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Apply entity configuration
|
|
/// </summary>
|
|
/// <param name="table">Create table expression builder</param>
|
|
public override void MapEntity(CreateTableExpressionBuilder table)
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
} |