Skip to content

Instantly share code, notes, and snippets.

@kdhollow
Created February 27, 2016 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdhollow/1c037b845d2b7b2af98b to your computer and use it in GitHub Desktop.
Save kdhollow/1c037b845d2b7b2af98b to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
namespace AFDSearch.Models
{
public class AirportSearch
{
public AirportSearch()
{
AirportSearchResults = new List<Airport>();
}
public string SearchText { get; set; }
public string Filter { get; set; }
public int Top { get; set; }
public int Skip { get; set; }
public long Count { get; set; }
public List<Airport> AirportSearchResults { get; set; }
public List<FacetInfo> FacetResults { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment