15 lines
372 B
C#
15 lines
372 B
C#
namespace ZelWiki.Engine.Implementation
|
|
{
|
|
public class AggregatedSearchToken
|
|
{
|
|
public AggregatedSearchToken()
|
|
{
|
|
Token = string.Empty;
|
|
DoubleMetaphone = string.Empty;
|
|
}
|
|
public string Token { get; set; }
|
|
public double Weight { get; set; }
|
|
public string DoubleMetaphone { get; set; }
|
|
}
|
|
}
|