using System.Collections.Generic;
public static void Main()
""value"": ""some more text""
""value"": ""2021-08-17""
""notes"": ""Something bad happened"",
""group"": ""some group"",
var deserialized = JsonConvert.DeserializeObject<filter_keys>(inJson);
Console.WriteLine(deserialized.notes);
foreach(var prop in deserialized.properties)
Console.WriteLine(prop.Key);
Console.WriteLine(prop.Value.value);
public string notes { get; set; }
public string group { get; set; }
public string assigned { get; set; }
public Dictionary<string, filter_properties> properties { get; set; }
public class filter_properties
public bool contains { get; set; }
public bool equals { get; set; }
public bool startsWith { get; set; }
public string value { get; set; }