Skip to content

Commit

Permalink
Merge pull request #967 from ltasler/master
Browse files Browse the repository at this point in the history
  • Loading branch information
nozzlegear authored Dec 8, 2023
2 parents d596640 + 71d64da commit 3ff8e82
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions ShopifySharp/Entities/Charge.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
using System;
using Newtonsoft.Json;
using ShopifySharp.Converters;
using ShopifySharp.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ShopifySharp
{
Expand Down Expand Up @@ -63,5 +58,11 @@ public class Charge : ShopifyObject
/// </summary>
[JsonProperty("updated_at")]
public DateTimeOffset? UpdatedAt { get; set; }

/// <summary>
/// The currency of the price of the application charge.
/// </summary>
[JsonProperty("currency")]
public string Currency { get; set; }
}
}
}

0 comments on commit 3ff8e82

Please sign in to comment.