Skip to content

Instantly share code, notes, and snippets.

@kdhollow
Created February 25, 2016 19:36
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/a5796d8b69ccb1a68a96 to your computer and use it in GitHub Desktop.
Save kdhollow/a5796d8b69ccb1a68a96 to your computer and use it in GitHub Desktop.
AirportSearch.cs
using System.Collections.Generic;
namespace AFDSearch.Models
{
public class AirportSearch
{
public AirportSearch()
{
AirportSearchResults = new List<Airport>();
}
public string SearchText { get; set; }
public List<Airport> AirportSearchResults { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment