Showdan.Net
c# client for the shodan api
Facet.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 Facet
14  {
15  [DataMember(Name = "count")]
16  public int? Count { get; set; }
17 
18  [DataMember(Name = "value")]
19  public string Value { get; set; }
20  }
21 }
Represents return facet data
Definition: Facet.cs:13