// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // #nullable disable using System; namespace Microsoft.SqlTools.ServiceLayer.FileBrowser { /// /// Event arguments for validating selected files in file browser /// public sealed class FileBrowserValidateEventArgs : EventArgs { /// /// Connection uri /// public string OwnerUri { get; set; } /// /// Service which provide validation callback /// public string ServiceType { get; set; } /// /// Selected files /// public string[] FilePaths { get; set; } } }