Webiant Logo Webiant Logo
  1. No results found.

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

PredefinedProductAttributeValue.cs

using Nop.Core.Domain.Localization;

namespace Nop.Core.Domain.Catalog;

/// 
/// Represents a predefined (default) product attribute value
/// 
public partial class PredefinedProductAttributeValue : BaseEntity, ILocalizedEntity
{
    /// 
    /// Gets or sets the product attribute identifier
    /// 
    public int ProductAttributeId { get; set; }

    /// 
    /// Gets or sets the product attribute name
    /// 
    public string Name { get; set; }

    /// 
    /// Gets or sets the price adjustment
    /// 
    public decimal PriceAdjustment { get; set; }

    /// 
    /// Gets or sets a value indicating whether "price adjustment" is specified as percentage
    /// 
    public bool PriceAdjustmentUsePercentage { get; set; }

    /// 
    /// Gets or sets the weight adjustment
    /// 
    public decimal WeightAdjustment { get; set; }

    /// 
    /// Gets or sets the attribute value cost
    /// 
    public decimal Cost { 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; }
}