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