// // 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; using Microsoft.SqlTools.ServiceLayer.SqlContext; namespace Microsoft.SqlTools.ServiceLayer.QueryExecution.Contracts { /// /// Parameters for the query execution options request /// public class QueryExecutionOptionsParams { public string OwnerUri { get; set; } public QueryExecutionSettings Options { get; set; } } public class QueryExecutionOptionsRequest { public static readonly RequestType Type = RequestType.Create("query/setexecutionoptions"); } }