// // 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 for expanding a folder node /// public class FileBrowserExpandParams { /// /// Connection uri /// public string OwnerUri; /// /// The path to expand the nodes for /// public string ExpandPath; } /// /// Request to expand a node in the file browser /// public class FileBrowserExpandRequest { public static readonly RequestType Type = RequestType.Create("filebrowser/expand"); } }