Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Catalog;
/// <summary>
/// Represents a specification attribute type
/// </summary>
public enum SpecificationAttributeType
{
/// <summary>
/// Option
/// </summary>
Option = 0,
/// <summary>
/// Custom text
/// </summary>
CustomText = 10,
/// <summary>
/// Custom HTML text
/// </summary>
CustomHtmlText = 20,
/// <summary>
/// Hyperlink
/// </summary>
Hyperlink = 30
}