using Nop.Core.Domain.Localization; namespace Nop.Core.Domain.Catalog; /// /// Represents a specification attribute /// public partial class SpecificationAttribute : BaseEntity, ILocalizedEntity { /// /// Gets or sets the name /// public string Name { get; set; } /// /// Gets or sets the display order /// public int DisplayOrder { get; set; } /// /// Gets or sets the specification attribute group identifier /// public int? SpecificationAttributeGroupId { get; set; } }