Showdan.Net
c# client for the shodan api
ScanPortResult.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Runtime.Serialization;
5 using System.Threading.Tasks;
6 
7 namespace Shodan.Net.Models
8 {
12  [DataContract]
13  public class ScanPortResult
14  {
15  [DataMember(Name = "id")]
16  public string Id { get; set; }
17  }
18 }
result of ShodanClient.RequestInternetPortScanAsync(int, string)