21 lines
594 B
C#
21 lines
594 B
C#
using Examine;
|
|
using Examine.LuceneEngine;
|
|
|
|
namespace UmbracoExamine
|
|
{
|
|
internal class StaticField : IIndexField
|
|
{
|
|
public StaticField(string name, FieldIndexTypes indexType, bool enableSorting, string type)
|
|
{
|
|
Type = type;
|
|
EnableSorting = enableSorting;
|
|
IndexType = indexType;
|
|
Name = name;
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
public FieldIndexTypes IndexType { get; private set; }
|
|
public bool EnableSorting { get; set; }
|
|
public string Type { get; set; }
|
|
}
|
|
} |