2022-02-19 16:42:47 +00:00
|
|
|
namespace QuestReader.Models;
|
|
|
|
|
|
|
|
public class TemplateModel
|
|
|
|
{
|
|
|
|
public Metadata Metadata { get; set; }
|
|
|
|
public DateTime Now { get; set; }
|
|
|
|
public List<ThreadPost> Posts { get; set; }
|
|
|
|
public List<ThreadPost> AllPosts { get; set; }
|
2022-02-20 19:27:27 +00:00
|
|
|
public string AssetsPath { get; set; }
|
2022-02-19 16:42:47 +00:00
|
|
|
public string ToolVersion { get; set; }
|
|
|
|
}
|