mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 08:52:50 +08:00
11 lines
160 B
C#
11 lines
160 B
C#
namespace Spectre.Console
|
|
{
|
|
internal enum ListPromptInputResult
|
|
{
|
|
None = 0,
|
|
Refresh = 1,
|
|
Submit = 2,
|
|
Abort = 3,
|
|
}
|
|
}
|