Revert "Initial migration service changes for assessment support (#1093)" (#1098)

This reverts commit 1a0388c8cb.
This commit is contained in:
Charles Gagnon
2020-10-16 13:35:59 -07:00
committed by GitHub
parent b64d5a3146
commit e96c0064ad
14 changed files with 515 additions and 1818 deletions

View File

@@ -1,19 +0,0 @@
//
// 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.Management.Assessment;
namespace Microsoft.SqlTools.ServiceLayer.Migration.Contracts
{
/// <summary>
/// Describes an item returned by SQL Assessment RPC methods
/// </summary>
public class ImpactedObjectInfo
{
public string Name { get; set; }
public string ImpactDetail { get; set; }
public string ObjectType { get; set; }
}
}