Skip to content

Commit

Permalink
Line item property names can be arbitrary javascript objects. (#442)
Browse files Browse the repository at this point in the history
Line item property names can be arbitrary javascript objects.
  • Loading branch information
nozzlegear authored Jan 23, 2020
2 parents d765998 + a7734a1 commit 5fdee48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ShopifySharp/Entities/LineItemProperty.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class LineItemProperty
/// The name of the note attribute.
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
public object Name { get; set; }

/// <summary>
/// The value of the note attribute.
Expand Down

0 comments on commit 5fdee48

Please sign in to comment.