25 lines
626 B
C#
25 lines
626 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
using Examine;
|
|
|
|
namespace Umbraco.Web.Search
|
|
{
|
|
[DataContract(Name = "indexer", Namespace = "")]
|
|
public class ExamineIndexModel
|
|
{
|
|
[DataMember(Name = "name")]
|
|
public string Name { get; set; }
|
|
|
|
[DataMember(Name = "healthStatus")]
|
|
public string HealthStatus { get; set; }
|
|
|
|
[DataMember(Name = "isHealthy")]
|
|
public bool IsHealthy => false;
|
|
|
|
[DataMember(Name = "providerProperties")]
|
|
public IReadOnlyDictionary<string, object> ProviderProperties { get; set; }
|
|
|
|
}
|
|
}
|