//
// 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.DataProtocol.Contracts.Connection
{
///
/// Parameters for the Cancel Connect Request.
///
public class CancelConnectParams
{
///
/// A URI identifying the owner of the connection. This will most commonly be a file in the workspace
/// or a virtual file representing an object in a database.
///
public string OwnerUri { get; set; }
///
/// The type of connection we are trying to cancel
///
public string Type { get; set; } = ConnectionType.Default;
}
}