mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-12-30 04:15:49 +08:00
Use file scoped namespace declarations
This commit is contained in:
committed by
Phil Scott
parent
1dbaf50935
commit
ec1188b837
@@ -1,24 +1,23 @@
|
||||
namespace Spectre.Console
|
||||
namespace Spectre.Console;
|
||||
|
||||
/// <summary>
|
||||
/// Determines interactivity support.
|
||||
/// </summary>
|
||||
public enum InteractionSupport
|
||||
{
|
||||
/// <summary>
|
||||
/// Determines interactivity support.
|
||||
/// Interaction support should be
|
||||
/// detected by the system.
|
||||
/// </summary>
|
||||
public enum InteractionSupport
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction support should be
|
||||
/// detected by the system.
|
||||
/// </summary>
|
||||
Detect = 0,
|
||||
Detect = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Interactivity is supported.
|
||||
/// </summary>
|
||||
Yes = 1,
|
||||
/// <summary>
|
||||
/// Interactivity is supported.
|
||||
/// </summary>
|
||||
Yes = 1,
|
||||
|
||||
/// <summary>
|
||||
/// Interactivity is not supported.
|
||||
/// </summary>
|
||||
No = 2,
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Interactivity is not supported.
|
||||
/// </summary>
|
||||
No = 2,
|
||||
}
|
||||
Reference in New Issue
Block a user