Files
sqltoolsservice/src/Microsoft.SqlTools.ServiceLayer/Utility/ResultStatus.cs
Karl Burtram 7c1f78a678 Update Agent contracts to match SQL Ops definitons (#633)
* WIP 2

* Update contracts to match SQL Ops definitons
2018-06-11 16:32:46 -07:00

15 lines
347 B
C#

//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
namespace Microsoft.SqlTools.ServiceLayer.Utility
{
public class ResultStatus
{
public bool Success { get; set; }
public string ErrorMessage { get; set; }
}
}