mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 02:24:22 +00:00
12 lines
222 B
C#
12 lines
222 B
C#
namespace Oqtane.Models
|
|
{
|
|
public class SearchResult : SearchContent
|
|
{
|
|
public float Score { get; set; }
|
|
|
|
public string DisplayScore { get; set; }
|
|
|
|
public string Snippet { get; set; }
|
|
}
|
|
}
|