Files
Nocturnis/src/Hermeteus/IBracketChapter.cs
2024-07-29 17:24:31 +01:00

15 lines
400 B
C#

using Skeleton.DataStructure.Tree;
namespace Nocturnis.Hermeteus;
public interface IBracketChapter : IBracketRouter
{
IBracketStory Story { get; set; }
string State { get; set; }
bool Finished { get; set; }
string Chapter { get; set; }
IBracketTopic CurrentTopic { get; set; }
HashSet<IBracketTopic> Children { get; set; }
HashSet<ICondition> Conditions { get; set; }
}