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; } }