21 lines
441 B
C#
21 lines
441 B
C#
namespace ZelWiki.Models.DataModels
|
|
{
|
|
/// <summary>
|
|
/// 用于缓存预处理的结果
|
|
/// </summary>
|
|
public class PageCache
|
|
{
|
|
public PageCache(string body)
|
|
{
|
|
Body = body;
|
|
}
|
|
/// <summary>
|
|
/// 通过调用@@Title("...")设置自定义页面title
|
|
/// </summary>
|
|
public string? PageTitle { get; set; }
|
|
public string Body { get; set; }
|
|
|
|
|
|
}
|
|
}
|