//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
using Microsoft.SqlTools.Hosting.Protocol.Contracts;
namespace Microsoft.SqlTools.ServiceLayer.FileBrowser.Contracts
{
///
/// Parameters to pass to close file browser
///
public class FileBrowserCloseParams
{
///
/// Connection uri
///
public string OwnerUri;
}
///
/// Response for closing the browser
///
public class FileBrowserCloseResponse
{
///
/// Result of the operation
///
public bool Succeeded;
///
/// Error message if any
///
public string Message;
}
///
/// Requst to close the file browser
///
class FileBrowserCloseRequest
{
public static readonly
RequestType Type =
RequestType.Create("filebrowser/close");
}
}