mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-19 03:26:18 +00:00
6 lines
134 B
C#
6 lines
134 B
C#
|
namespace TUI.Engine.Nodes.Attributes.Orientations;
|
||
|
|
||
|
public interface IWithOrientation
|
||
|
{
|
||
|
public Orientation Orientation { get; }
|
||
|
}
|