Created
September 17, 2015 22:24
-
-
Save BillCacy/72ac70edd382d5044bb2 to your computer and use it in GitHub Desktop.
Result class for mapping from the search interface
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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