19 lines
385 B
C#
19 lines
385 B
C#
namespace ZelWiki.Engine.Library
|
|
{
|
|
public class HandlerResult
|
|
{
|
|
public string Content { get; set; } = string.Empty;
|
|
|
|
public List<Constants.HandlerResultInstruction> Instructions { get; set; } = new();
|
|
|
|
public HandlerResult()
|
|
{
|
|
}
|
|
|
|
public HandlerResult(string content)
|
|
{
|
|
Content = content;
|
|
}
|
|
}
|
|
}
|