Skip to content

Commit

Permalink
Fix serialization related property name attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
filzrev committed Jul 6, 2023
1 parent c1545fe commit 88104f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ public string NameForVB
[JsonProperty("homepage")]
public string Homepage { get; set; }

[YamlMember(Alias = "originallHomepage")]
[JsonProperty("originallHomepage")]
[YamlMember(Alias = "originalHomepage")]
[JsonProperty("originalHomepage")]
public string OriginalHomepage { get; set; }

[YamlMember(Alias = "homepageUid")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class MarkdownServiceProperties
/// <summary>
/// Enables line numbers.
/// </summary>
[JsonProperty("EnableSourceInfo")]
[JsonProperty("enableSourceInfo")]
public bool EnableSourceInfo { get; set; } = true;

/// <summary>
Expand Down

0 comments on commit 88104f6

Please sign in to comment.