Files
ZelWiki/TightWiki.Engine.Library/HandlerResult.cs
2025-01-22 23:31:03 +08:00

21 lines
427 B
C#

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;
}
}
}