Archived
update filebrowser expand contract and methods (#500)
This commit is contained in:
+7
-2
@@ -17,9 +17,14 @@ namespace Microsoft.SqlTools.ServiceLayer.FileBrowser.Contracts
|
||||
public string OwnerUri;
|
||||
|
||||
/// <summary>
|
||||
/// Expanded node
|
||||
/// Expand path
|
||||
/// </summary>
|
||||
public FileTreeNode ExpandedNode;
|
||||
public string ExpandPath;
|
||||
|
||||
/// <summary>
|
||||
/// Children nodes
|
||||
/// </summary>
|
||||
public FileTreeNode[] Children;
|
||||
|
||||
/// <summary>
|
||||
/// Result of the operation
|
||||
|
||||
@@ -23,7 +23,7 @@ namespace Microsoft.SqlTools.ServiceLayer.FileBrowser.Contracts
|
||||
/// <summary>
|
||||
/// List of children nodes
|
||||
/// </summary>
|
||||
public List<FileTreeNode> Children { get; private set; }
|
||||
public List<FileTreeNode> Children { get; set; }
|
||||
|
||||
// Indicates if the node is expanded, applicable to a folder.
|
||||
public bool IsExpanded { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user