blob: a0c79e9d477ba2bb67453e06eb04ee45fff6a29f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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; }
}
}
|