Webiant Logo Webiant Logo
  1. No results found.

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

NopEntityDescriptor.cs

namespace Nop.Data.Mapping;

public partial class NopEntityDescriptor
{
    public NopEntityDescriptor()
    {
        Fields = new List();
    }

    public string EntityName { get; set; }
    public string SchemaName { get; set; }
    public ICollection Fields { get; set; }
}