Files
Disco/Disco.Models/Services/Searching/ISearchResultItem.cs
2014-04-22 13:55:46 +10:00

17 lines
352 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Disco.Models.Services.Searching
{
public interface ISearchResultItem
{
string Id { get; set; }
string Type { get; }
string Description { get; }
string[] ScoreValues { get; }
}
}