Skip to content

Commit

Permalink
Fixed issue with datatype
Browse files Browse the repository at this point in the history
Signed-off-by: Emil Balitzki <emil.balitzki@gmail.com>
  • Loading branch information
Corgam committed Jul 12, 2024
1 parent 0efe74f commit 35fb847
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/lib/BieMetadata/MetadataObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public class DisplayProperty
/// </summary>
public class PolygonColoring
{
public string Color { get; set; } = string.Empty;
public List<string> Values { get; set; } = new List<string>();
public string color { get; set; } = string.Empty;
public List<string> values { get; set; } = new List<string>();
}
}

0 comments on commit 35fb847

Please sign in to comment.