// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using Microsoft.SqlServer.Dac.Compare; using Microsoft.SqlTools.Hosting.Protocol.Contracts; using Microsoft.SqlTools.ServiceLayer.TaskServices; using Microsoft.SqlTools.ServiceLayer.Utility; using System.Collections.Generic; namespace Microsoft.SqlTools.ServiceLayer.SchemaCompare.Contracts { /// /// Parameters for a schema compare generate script request. /// public class SchemaCompareGenerateScriptParams : SchemaComparePublishDatabaseChangesParams { } /// /// Defines the Schema Compare generate script request type /// class SchemaCompareGenerateScriptRequest { public static readonly RequestType Type = RequestType.Create("schemaCompare/generateScript"); } }