For
"Items"use a
Dictionary<string, List<Info>>, i.e.:
class Response{ public Dictionary<string, List<Info>> Items { get; set; } public string[] Errors { get; set; }}class Info{ public string Prop1 { get; set; } public string Prop2 { get; set; } public int Prop3 { get; set; } public bool Prop4 { get; set; }}This assumes that the item names
"Item322A"and
"Item2B"will vary from
response to response, and reads these names in as the dictionary keys.
Sample fiddle.



