Skip to content

Instantly share code, notes, and snippets.

@BillCacy
Created September 17, 2015 22:24
Show Gist options
  • Save BillCacy/72ac70edd382d5044bb2 to your computer and use it in GitHub Desktop.
Save BillCacy/72ac70edd382d5044bb2 to your computer and use it in GitHub Desktop.
Result class for mapping from the search interface
namespace YOURNAMESPACE.Search
{
public class SiteSearchResult
{
public string Title { get;set; }
public string PageLinkUrl { get; set; }
public string Content { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment