mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-25 11:18:37 +08:00
13 lines
231 B
C#
13 lines
231 B
C#
using mRemoteNG.Container;
|
|
|
|
namespace mRemoteNG.Connection
|
|
{
|
|
public interface IHasParent
|
|
{
|
|
ContainerInfo Parent { get; }
|
|
|
|
void SetParent(ContainerInfo containerInfo);
|
|
|
|
void RemoveParent();
|
|
}
|
|
} |