// // 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 Microsoft.SqlTools.Hosting.Protocol.Contracts; using Microsoft.SqlTools.Utility; using Newtonsoft.Json.Linq; namespace Microsoft.SqlTools.ServiceLayer.ObjectManagement.Contracts { public class SaveObjectRequestParams : GeneralRequestDetails { /// /// The context id. /// public string ContextId { get; set; } /// /// The object information. /// public JToken Object { get; set; } } public class SaveObjectRequestResponse { } public class SaveObjectRequest { public static readonly RequestType Type = RequestType.Create("objectManagement/save"); } }