Files
ZelWiki/TightWiki.Engine.Implementation/AggregatedSearchToken.cs
2025-01-22 23:31:03 +08:00

10 lines
269 B
C#

namespace TightWiki.Engine.Implementation
{
public class AggregatedSearchToken
{
public string Token { get; set; } = string.Empty;
public double Weight { get; set; }
public string DoubleMetaphone { get; set; } = string.Empty;
}
}