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; } }