Added status code for TDE result (#1975)

This PR updates TDE NuGet and makes code changes to support the introduction of "StatusCode" being returned from NuGet.
This commit is contained in:
Steven Marturano
2023-04-03 16:30:08 -04:00
committed by GitHub
parent ffcae33b18
commit ffa42b4435
6 changed files with 15 additions and 4 deletions

View File

@@ -25,9 +25,14 @@ namespace Microsoft.SqlTools.Migration.Contracts
public string Message { get; set; }
/// <summary>
/// Result of migration
/// Result of migration.
/// </summary>
public bool Success { get; set; }
/// <summary>
/// Status code returned by migration.
/// </summary>
public string StatusCode { get; set; }
}