|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Aspire.Cli.Backchannel;
/// <summary>
/// Represents a single line of output to be displayed, along with its associated stream (such as "stdout" or "stderr").
/// </summary>
internal sealed class DisplayLineState(string stream, string line)
{
/// <summary>
/// Gets the name of the stream the line belongs to (e.g., "stdout", "stderr").
/// </summary>
public string Stream { get; } = stream;
/// <summary>
/// Gets the content of the line to be displayed.
/// </summary>
public string Line { get; } = line;
}
/// <summary>
/// Specifies the type of input for a publishing prompt input.
/// </summary>
internal enum InputType
{
/// <summary>
/// A single-line text input.
/// </summary>
Text,
/// <summary>
/// A secure text input.
/// </summary>
SecretText,
/// <summary>
/// A choice input. Selects from a list of options.
/// </summary>
Choice,
/// <summary>
/// A boolean input.
/// </summary>
Boolean,
/// <summary>
/// A numeric input.
/// </summary>
Number
}
|