17 lines
436 B
C#
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; }
|
|
}
|
|
}
|