23 lines
485 B
C#
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; }
|
|
}
|
|
}
|