添加项目文件。
This commit is contained in:
20
TightWiki.Engine.Library/HandlerResult.cs
Normal file
20
TightWiki.Engine.Library/HandlerResult.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using static TightWiki.Engine.Library.Constants;
|
||||
|
||||
namespace TightWiki.Engine.Library
|
||||
{
|
||||
public class HandlerResult
|
||||
{
|
||||
public string Content { get; set; } = string.Empty;
|
||||
|
||||
public List<HandlerResultInstruction> Instructions { get; set; } = new();
|
||||
|
||||
public HandlerResult()
|
||||
{
|
||||
}
|
||||
|
||||
public HandlerResult(string content)
|
||||
{
|
||||
Content = content;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user