Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Localization;
namespace Nop.Core.Domain.Attributes;
///
/// Represents the base class for attribute values
///
public abstract partial class BaseAttributeValue : BaseEntity, ILocalizedEntity
{
///
/// Gets or sets the name
///
public string Name { get; set; }
///
/// Gets or sets a value indicating whether the value is pre-selected
///
public bool IsPreSelected { get; set; }
///
/// Gets or sets the display order
///
public int DisplayOrder { get; set; }
///
/// Gets or sets the attribute identifier
///
public int AttributeId { get; set; }
}