Fixing more restore connection issues (#488)

This commit is contained in:
Leila Lali
2017-10-10 14:32:45 -07:00
committed by GitHub
parent a4376732ce
commit 284a3e0ee4
3 changed files with 17 additions and 7 deletions

View File

@@ -28,5 +28,10 @@ namespace Microsoft.SqlTools.ServiceLayer.Connection.Contracts
/// The type of this connection. By default, this is set to ConnectionType.Default.
/// </summary>
public string Type { get; set; } = ConnectionType.Default;
/// <summary>
/// The porpose of the connection to keep track of open connections
/// </summary>
public string Purpose { get; set; } = ConnectionType.GeneralConnection;
}
}