//
// 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
{
///
/// Defines paramaters for Get default options call
/// No parameters required so far
///
public class SchemaCompareGetOptionsParams
{
}
///
/// Gets or sets the result of get default options call
///
public class SchemaCompareOptionsResult : ResultStatus
{
public DeploymentOptions DefaultDeploymentOptions { get; set; }
}
///
/// Defines the Schema Compare request type
///
class SchemaCompareGetDefaultOptionsRequest
{
public static readonly RequestType Type =
RequestType.Create("schemaCompare/getDefaultOptions");
}
}