Webiant Logo Webiant Logo
  1. No results found.

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

CheckoutAttributeValue.cs

using Nop.Core.Domain.Attributes;

namespace Nop.Core.Domain.Orders;

/// 
/// Represents a checkout attribute value
/// 
public partial class CheckoutAttributeValue : BaseAttributeValue
{
    /// 
    /// Gets or sets the color RGB value (used with "Color squares" attribute type)
    /// 
    public string ColorSquaresRgb { get; set; }

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

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