9 lines
199 B
C#
9 lines
199 B
C#
namespace TightWiki.Engine.Implementation
|
|
{
|
|
public class WeightedSearchToken
|
|
{
|
|
public string Token { get; set; } = string.Empty;
|
|
public double Weight { get; set; }
|
|
}
|
|
}
|