Nop.Core_4.7/Libraries/Nop.Data/Mapping/NopEntityDescriptor.cs

13 lines
333 B
C#

namespace Nop.Data.Mapping;
public partial class NopEntityDescriptor
{
public NopEntityDescriptor()
{
Fields = new List<NopEntityFieldDescriptor>();
}
public string EntityName { get; set; }
public string SchemaName { get; set; }
public ICollection<NopEntityFieldDescriptor> Fields { get; set; }
}