Files
mRemoteNG/mRemoteV1/Connection/IHasParent.cs

13 lines
231 B
C#

using mRemoteNG.Container;
namespace mRemoteNG.Connection
{
public interface IHasParent
{
ContainerInfo Parent { get; }
void SetParent(ContainerInfo containerInfo);
void RemoveParent();
}
}