namespace ZelWiki.Models.DataModels
{
///
/// Used to cache pre-processed wiki results.
///
public class PageCache
{
///
/// Custom page title set by a call to @@Title("...")
///
public string? PageTitle { get; set; }
public string Body { get; set; }
public PageCache(string body)
{
Body = body;
}
}
}