introduce object type property to node (#1614)

This commit is contained in:
Alan Ren
2022-08-01 20:14:58 -07:00
committed by GitHub
parent dc3deecbad
commit 38c2cd4482
2 changed files with 16 additions and 8 deletions

View File

@@ -58,5 +58,10 @@ namespace Microsoft.SqlTools.ServiceLayer.ObjectExplorer.Contracts
/// Error message returned from the engine for a object explorer node failure reason, if any.
/// </summary>
public string ErrorMessage { get; set; }
/// <summary>
/// The object type of the node. e.g. Database, Server, Tables...
/// </summary>
public string ObjectType { get; set; }
}
}