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