//
// 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 initial connection request
///
public class ConnectionDetails : ConnectionSummary
{
///
/// Gets or sets the connection password
///
///
public string Password { get; set; }
// TODO Handle full set of properties
}
}