teamlead-dashboard/src/TUI/Engine/Nodes/Containers/IContainer.cs

8 lines
156 B
C#
Raw Normal View History

2024-03-06 21:49:54 +00:00
namespace TUI.Engine.Nodes.Containers;
public interface IContainer : INode
{
public Orientation Orientation { get; }
public Nodes Nodes { get; }
}