|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#nullable disable
namespace Microsoft.Build.Logging.StructuredLogger
{
/// <summary>
/// Class representation of a task input parameter.
/// </summary>
internal sealed class InputParameter : TaskParameter
{
/// <summary>
/// Initializes a new instance of the <see cref="InputParameter"/> class.
/// </summary>
/// <param name="message">The message from the logger.</param>
/// <param name="prefix">The prefix string (e.g. 'Output Property: ').</param>
public InputParameter(string message, string prefix)
: base(message, prefix)
{
}
}
}
|