I am trying to create a List of a class with this object:
{
  "801": {
    "Name": "SomeWhere",
    "Lanes": {
      "2": {
        "Ip": "172.23.101.21"
      },
      "4": {
        "Ip": "172.23.101.41"
      },
      "6": {
        "Ip": "172.23.101.61"
      },
      "8": {
        "Ip": "172.23.101.81"
      },
      "9": {
        "Ip": "172.23.101.91"
      },
      "11": {
        "Ip": "172.23.101.111"
      }
    }
  },
  "803": {
    "Name": "OverThere",
    "Lanes": {
      "3": {
        "Ip": "172.23.103.31"
      },
      "6": {
        "Ip": "172.23.103.61"
      }
    }
  }
}
I need it to be able to use it like this: List<ClassOfJson> jsonData = new List<ClassOfJson>();
I am using Newtonsoft in C#. What can I do to resolve this?
 
     
    