Files
Umbraco-CMS/src/Umbraco.Web/Models/ContentEditing/SearchResultItem.cs
Per Ploug Krogslund 7440855c72 merge
2013-11-07 17:16:22 +01:00

25 lines
689 B
C#

namespace Umbraco.Web.Models.ContentEditing
{
public class SearchResultItem
{
/// <summary>
/// The string representation of the ID, used for Web responses
/// </summary>
public string Id { get; set; }
/// <summary>
/// The name/title of the search result item
/// </summary>
public string Title { get; set; }
/// <summary>
/// The rank of the search result
/// </summary>
public int Rank { get; set; }
/// <summary>
/// Description/Synopsis of the item
/// </summary>
public string Description { get; set; }
}
}