vgquotes/Src/VideoGameQuotes.Web/Models/SearchModel.cs
2011-02-25 23:36:21 +00:00

11 lines
319 B
C#

using System.Collections.Generic;
using VideoGameQuotes.Api;
using VideoGameQuotes.Api.Search;
namespace VideoGameQuotes.Web.Models {
public class SearchModel {
public User User { get; set; }
public IEnumerable<SearchResult<Quote>> Results { get; set; }
public string SearchQuery { get; set; }
}
}