123123
This commit is contained in:
@@ -1,20 +1,20 @@
|
||||
namespace ZelWiki.Models.DataModels
|
||||
{
|
||||
/// <summary>
|
||||
/// Used to cache pre-processed wiki results.
|
||||
/// 用于缓存预处理的结果
|
||||
/// </summary>
|
||||
public class PageCache
|
||||
{
|
||||
public PageCache(string body)
|
||||
{
|
||||
Body = body;
|
||||
}
|
||||
/// <summary>
|
||||
/// Custom page title set by a call to @@Title("...")
|
||||
/// 通过调用@@Title("...")设置自定义页面title
|
||||
/// </summary>
|
||||
public string? PageTitle { get; set; }
|
||||
public string Body { get; set; }
|
||||
|
||||
public PageCache(string body)
|
||||
{
|
||||
Body = body;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user