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