Files
ZelWiki/ZelWiki.Engine/WikiMatchSet.cs
2025-02-23 18:47:21 +08:00

23 lines
485 B
C#

using ZelWiki.Engine.Library;
namespace ZelWiki.Engine
{
public class WikiMatchSet
{
/// <summary>
/// 找到的匹配类型.
/// </summary>
public Constants.WikiMatchType MatchType { get; set; }
/// <summary>
/// 内容.
/// </summary>
public string Content { get; set; } = string.Empty;
/// <summary>
///
/// </summary>
public bool AllowNestedDecode { get; set; }
}
}