Files
Umbraco-CMS/src/UmbracoExamine/StaticField.cs
2013-02-15 18:54:37 +06:00

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; }
}
}