Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Localization;
namespace Nop.Core.Domain.Catalog;
///
/// Represents a specification attribute group
///
public partial class SpecificationAttributeGroup : BaseEntity, ILocalizedEntity
{
///
/// Gets or sets the name
///
public string Name { get; set; }
///
/// Gets or sets the display order
///
public int DisplayOrder { get; set; }
}