Showdan.Net
c# client for the shodan api
SortOptions.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Threading.Tasks;
5 
6 namespace Shodan.Net
7 {
11  public enum SortOptions
12  {
13  votes,
14  timestamp
15  }
16 }
SortOptions
Represents an option to sort
Definition: SortOptions.cs:11