Files
mRemoteNG/mRemoteV1/Tree/ConnectionTreeModel.cs

16 lines
340 B
C#

using System.Collections.Generic;
using mRemoteNG.Container;
namespace mRemoteNG.Tree
{
public class ConnectionTreeModel
{
public List<ContainerInfo> RootNodes { get; } = new List<ContainerInfo>();
public void AddRootNode(ContainerInfo rootNode)
{
RootNodes.Add(rootNode);
}
}
}