mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-26 21:22:50 +08:00
25 lines
508 B
C#
25 lines
508 B
C#
namespace Spectre.Console
|
|
{
|
|
/// <summary>
|
|
/// Determines interactivity support.
|
|
/// </summary>
|
|
public enum InteractionSupport
|
|
{
|
|
/// <summary>
|
|
/// Interaction support should be
|
|
/// detected by the system.
|
|
/// </summary>
|
|
Detect = 0,
|
|
|
|
/// <summary>
|
|
/// Interactivity is supported.
|
|
/// </summary>
|
|
Yes = 1,
|
|
|
|
/// <summary>
|
|
/// Interactivity is not supported.
|
|
/// </summary>
|
|
No = 2,
|
|
}
|
|
}
|