mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-19 11:36:18 +00:00
8 lines
156 B
C#
8 lines
156 B
C#
|
namespace TUI.Engine.Nodes.Containers;
|
||
|
|
||
|
public interface IContainer : INode
|
||
|
{
|
||
|
public Orientation Orientation { get; }
|
||
|
|
||
|
public Nodes Nodes { get; }
|
||
|
}
|