Skip to content

Commit

Permalink
Properly serialize the OpenTrackingSettings.Enabled property to "enab…
Browse files Browse the repository at this point in the history
…le" as opposed to "enabled"

Fixes #40
  • Loading branch information
Jericho committed Oct 27, 2016
1 parent 18de107 commit 4a54c1d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Source/StrongGrid/Model/OpenTrackingSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

namespace StrongGrid.Model
{
public class OpenTrackingSettings : Setting
public class OpenTrackingSettings
{
[JsonProperty("enable")]
public bool Enabled { get; set; }

[JsonProperty("substitution_tag")]
public string SubstitutionTag { get; set; }
}
Expand Down

0 comments on commit 4a54c1d

Please sign in to comment.