11 lines
235 B
C#
11 lines
235 B
C#
namespace Disco.Models.Services.Searching
|
|
{
|
|
public interface ISearchResultItem
|
|
{
|
|
string Id { get; set; }
|
|
string Type { get; }
|
|
string Description { get; }
|
|
string[] ScoreValues { get; }
|
|
}
|
|
}
|