using Nop.Core.Domain.Localization; namespace Nop.Core.Domain.Catalog; /// /// Represents a specification attribute option /// public partial class SpecificationAttributeOption : BaseEntity, ILocalizedEntity { /// /// Gets or sets the specification attribute identifier /// public int SpecificationAttributeId { get; set; } /// /// Gets or sets the name /// public string Name { get; set; } /// /// Gets or sets the color RGB value (used when you want to display "Color squares" instead of text) /// public string ColorSquaresRgb { get; set; } /// /// Gets or sets the display order /// public int DisplayOrder { get; set; } }