All the solutions that I have found to this, not satisfied with me, because I do not have JSON same structure. My JSON array:
string str = @"[{
"type": "text",
"field": [
"tags",
"track_title"
],
"value": "hero",
"operation": "must"
}, {
"type": "range",
"field": "duration",
"value": [
0,
5
],
"operation": "must"
}, {
"type": "range",
"field": "duration",
"value": [
180,
null
],
"operation": "must"
}]"
As you can see, JSONs are different. So I can't using specific model class for convert via it. I need to receive List<string>
with separate JSON. How can I parse it ?