diff options
Diffstat (limited to 'Project-Unite/Models/SearchModels.cs')
| -rw-r--r-- | Project-Unite/Models/SearchModels.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Project-Unite/Models/SearchModels.cs b/Project-Unite/Models/SearchModels.cs new file mode 100644 index 0000000..a0c79e9 --- /dev/null +++ b/Project-Unite/Models/SearchModels.cs @@ -0,0 +1,22 @@ +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<ForumPost> ForumPosts { get; set; } + public IEnumerable<ForumTopic> ForumTopics { get; set; } + public IEnumerable<ApplicationUser> Users { get; set; } + public IEnumerable<Skin> Skins { get; set; } + public IEnumerable<Download> Downloads { get; set; } + public IEnumerable<WikiPage> WikiPages { get; set; } + } +}
\ No newline at end of file |
