Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@kdhollow
Created February 24, 2016 07:18
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/700af8e5dd69c8368ac6 to your computer and use it in GitHub Desktop.
Save kdhollow/700af8e5dd69c8368ac6 to your computer and use it in GitHub Desktop.
Azure Search Example Airport Class
namespace AFDSearch.Models
{
public class Airport
{
public string Id { get; set; }
public string Identifier { get; set; }
public string City { get; set; }
public string State { get; set; }
public string Name { get; set; }
public string Chart { get; set; }
public string Region { get; set; }
public string AfdLink { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment