-
Notifications
You must be signed in to change notification settings - Fork 0
/
Search.cs
69 lines (58 loc) · 1.4 KB
/
Search.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using System;
namespace net.vieapps.Services
{
/// <summary>
/// Presents the state of a service
/// </summary>
public interface ISearchingObject
{
/// <summary>
/// Gets or Sets the identity
/// </summary>
string ID { get; set; }
/// <summary>
/// Gets or Sets the name of the service
/// </summary>
string ServiceName { get; set; }
/// <summary>
/// Gets or Sets the name of the object
/// </summary>
string ObjectName { get; set; }
/// <summary>
/// Gets or Sets the identity of a system
/// </summary>
string SystemID { get; set; }
/// <summary>
/// Gets or Sets the identity of a repository
/// </summary>
string RepositoryID { get; set; }
/// <summary>
/// Gets or Sets the identity of a repository entity
/// </summary>
string RepositoryEntityID { get; set; }
/// <summary>
/// Gets or Sets the title
/// </summary>
string Title { get; set; }
/// <summary>
/// Gets or Sets the summary
/// </summary>
string Summary { get; set; }
/// <summary>
/// Gets or Sets the details
/// </summary>
string Details { get; set; }
/// <summary>
/// Gets or Sets the tags
/// </summary>
string Tags { get; set; }
/// <summary>
/// Gets or Sets the identity of categories
/// </summary>
string Categories { get; set; }
/// <summary>
/// Gets or Sets the last-updated time
/// </summary>
DateTime LastUpdated { get; set; }
}
}