mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-26 05:02:50 +08:00
11 lines
245 B
C#
11 lines
245 B
C#
namespace Spectre.Console
|
|
{
|
|
internal static class Constants
|
|
{
|
|
public const int DefaultTerminalWidth = 80;
|
|
public const int DefaultTerminalHeight = 24;
|
|
|
|
public const string EmptyLink = "https://emptylink";
|
|
}
|
|
}
|