//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
namespace Microsoft.SqlTools.ServiceLayer.Connection.Contracts
{
///
/// Message format for the connection result response
///
public class ConnectResponse
{
///
/// A GUID representing a unique connection ID
///
public string ConnectionId { get; set; }
///
/// Gets or sets any connection error messages
///
public string Messages { get; set; }
}
}