Files
mRemoteNG/mRemoteV1/Connection/Parent.cs
David Sparer 45b3f3d56f fixed issue described in MR-385
also made some refactoring changes in a quest to make the code more readable
2016-05-07 17:59:23 -06:00

9 lines
148 B
C#

using mRemoteNG.Container;
namespace mRemoteNG.Connection
{
public interface Parent
{
ContainerInfo Parent { get; set; }
}
}