// // 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 validating selected file paths /// public class FileBrowserValidateParams { /// /// Connection uri /// public string OwnerUri; /// /// Type of service that uses the file browser /// public string ServiceType; /// /// Selected files /// public string[] SelectedFiles; } /// /// Requst to validate the selected file paths /// class FileBrowserValidateRequest { public static readonly RequestType Type = RequestType.Create("filebrowser/validate"); } }