11 lines
306 B
C#
11 lines
306 B
C#
using System.Collections.Generic;
|
|
using Portoa.Search;
|
|
using VideoGameQuotes.Api;
|
|
|
|
namespace VideoGameQuotes.Web.Models {
|
|
public class SearchModel {
|
|
public User User { get; set; }
|
|
public IEnumerable<SearchResult<Quote>> Results { get; set; }
|
|
public string SearchQuery { get; set; }
|
|
}
|
|
} |