//
// 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.Utility;
namespace Microsoft.SqlTools.ServiceLayer.SchemaCompare.Contracts
{
///
/// Parameters for a schema compare cancel request
///
public class SchemaCompareCancelParams
{
///
/// Operation id of the schema compare operation
///
public string OperationId { get; set; }
}
///
/// Defines the Schema Compare cancel comparison request type
///
class SchemaCompareCancellationRequest
{
public static readonly RequestType Type =
RequestType.Create("schemaCompare/cancel");
}
}