vgquotes/Src/VideoGameQuotes.Web/Models/SearchModel.cs

11 lines
306 B
C#
Raw Normal View History

2011-02-17 05:30:31 +00:00
using System.Collections.Generic;
using Portoa.Search;
2011-02-17 05:30:31 +00:00
using VideoGameQuotes.Api;
namespace VideoGameQuotes.Web.Models {
public class SearchModel {
public User User { get; set; }
public IEnumerable<SearchResult<Quote>> Results { get; set; }
2011-02-17 05:30:31 +00:00
public string SearchQuery { get; set; }
}
}