namespace VideoGameQuotes.Api.Search { /// /// Represents a search result /// public class SearchResult { /// /// A value (between 0 and 1, the higher the better) representing how good /// the match is between the search query and the value /// public double Score { get; set; } /// /// The matched quote /// public Quote Quote { get; set; } } }