18 lines
429 B
C#
18 lines
429 B
C#
using System.Diagnostics;
|
|
|
|
namespace Umbraco.Cms.Core.Models.PublishedContent
|
|
{
|
|
[DebuggerDisplay("{Content?.Name} ({Score})")]
|
|
public class PublishedSearchResult
|
|
{
|
|
public PublishedSearchResult(IPublishedContent content, float score)
|
|
{
|
|
Content = content;
|
|
Score = score;
|
|
}
|
|
|
|
public IPublishedContent Content { get; }
|
|
public float Score { get; }
|
|
}
|
|
}
|