namespace CoreConnect.Commerce.Core;
public Attribute(string name, AttributeValueType? valueType, AttributeValue? value, string? friendlyName = null, string? description = null)
FriendlyName = friendlyName;
Description = description;
/// The Name of the Attribute.
public string Name { get; set; }
/// The Friendly Name of the Attribute.
public string? FriendlyName { get; set; }
/// The Description of the Attribute.
public string? Description { get; set; }
/// The Value Type of the Attribute.
public AttributeValueType? ValueType { get; set; }
/// The Value of the Attribute.
public AttributeValue? Value { get; set; }