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 Results { get; set; } public string SearchQuery { get; set; } } }