what are options to deserialize dunamically build object's multiple properties(with known name prefix -> "prop") into list of strings/or any other type obj?
dunamic json e.g.
@"{
"prop1": "value1",
"prop2": "value2",
.......
"propN": "valueN",
}"
preferable result
[JsonPropStartsWith("prop")]
list<string>properties