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

9 lines
177 B
C#

namespace TightWiki.Engine
{
public class WikiOrderedMatch
{
public string Value { get; set; } = string.Empty;
public int Index { get; set; }
}
}