using System.Collections.Generic;
public static void Main()
var root = JsonSerializer.Deserialize<Root>(json);
var item = root.result[0].First(o => o.id == "002");
Console.WriteLine(item.name);
public string id { get; set; }
public string name { get; set; }
public List<List<Item>> result { get; set; }