namespace TUI.Engine; public static class Symbols { public const char Space = ' '; public const char Copyright = '©'; public const char GitLab = ''; public const char GitHub = ''; public const char Git = ''; public const char LineBreak = '\n'; public static class Lines { public const char Vertical = '│'; public const char Horizontal = '─'; } public static class Angles { public const char RightTop = '┐'; public const char LeftBottom = '└'; public const char LeftTop = '┌'; public const char RightBottom = '┘'; } }