Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

SpecificationAttributeType.cs

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
}