2021-08-06 20:21:30 +01:00
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
|
2021-09-07 12:10:58 +02:00
|
|
|
|
namespace Umbraco.Cms.Core.Models.PublishedContent
|
2017-07-21 17:04:14 +02:00
|
|
|
|
{
|
2021-08-06 20:21:30 +01:00
|
|
|
|
[DebuggerDisplay("{Content?.Name} ({Score})")]
|
2017-07-21 17:04:14 +02:00
|
|
|
|
public class PublishedSearchResult
|
|
|
|
|
|
{
|
|
|
|
|
|
public PublishedSearchResult(IPublishedContent content, float score)
|
|
|
|
|
|
{
|
|
|
|
|
|
Content = content;
|
|
|
|
|
|
Score = score;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public IPublishedContent Content { get; }
|
|
|
|
|
|
public float Score { get; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|