Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

Commit

Permalink
Fields are nullable.
Browse files Browse the repository at this point in the history
  • Loading branch information
peschuster committed Feb 15, 2017
1 parent 9154812 commit f0ad74e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PcoBase/Arrangement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ public class Arrangement
public string ChordChartFont { get; set; }

[JsonProperty("chord_chart_columns")]
public int ChordChartColumns { get; set; }
public int? ChordChartColumns { get; set; }

[JsonProperty("chord_chart_font_size")]
public int ChordChartFontSize { get; set; }
public int? ChordChartFontSize { get; set; }

[JsonProperty("properties")]
public List<Property> Properties { get; set; }
Expand Down

0 comments on commit f0ad74e

Please sign in to comment.