Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
salaros committed Oct 2, 2017
1 parent 3d9cc91 commit a4b950b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Va3cObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,10 @@ public class Va3cMetadata

[DataMember(Name = "geometries")]
[JsonProperty(PropertyName = "geometries")]
public List<Va3cGeometry> Geometries;
public List<Va3cGeometry> Geometries { get; set; } = new List<Va3cGeometry>();

[DataMember(Name = "materials")]
[JsonProperty(PropertyName = "materials")]
public List<Va3cMaterial> Materials;
public List<Va3cMaterial> Materials { get; set; } = new List<Va3cMaterial>();
}
}

0 comments on commit a4b950b

Please sign in to comment.