// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging;
namespace Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel;
/// <summary>
/// The test message payload.
/// </summary>
public class TestMessagePayload
{
/// <summary>
/// Gets or sets the message level.
/// </summary>
public TestMessageLevel MessageLevel { get; set; }
/// <summary>
/// Gets or sets the message.
/// </summary>
public string? Message { get; set; }
}
|