using System.Collections.Generic;
public static void Main()
var response = "{\"Devices\":[{\"DeviceId\":1234}]}";
var model = JsonConvert.DeserializeObject<DeviceSearchResultModel>(response);
Console.WriteLine(model.Devices[0].DeviceId);
public class DeviceExtLite
public class DeviceSearchResultModel
public List<DeviceExtLite> Devices