using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Project_Unite.Models { public class SimpleSearch { public string Query { get; set; } } public class SearchResult { public IEnumerable ForumPosts { get; set; } public IEnumerable ForumTopics { get; set; } public IEnumerable Users { get; set; } public IEnumerable Skins { get; set; } public IEnumerable Downloads { get; set; } public IEnumerable WikiPages { get; set; } } }