Files
Umbraco-CMS/src/Umbraco.Core/Models/ContentEditing/SearchResultEntity.cs
2022-05-03 21:13:27 +02:00

17 lines
436 B
C#

using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
namespace Umbraco.Cms.Core.Models.ContentEditing
{
[DataContract(Name = "searchResult", Namespace = "")]
public class SearchResultEntity : EntityBasic
{
/// <summary>
/// The score of the search result
/// </summary>
[DataMember(Name = "score")]
public float Score { get; set; }
}
}