cd31ba4a6c
Device/Job/User Search refactoring. Quick-Search implemented.
17 lines
349 B
C#
17 lines
349 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 ScoreValue { get; }
|
|
}
|
|
}
|