mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 03:58:45 +08:00
10 lines
236 B
C#
10 lines
236 B
C#
using mRemoteNG.Container;
|
|
|
|
namespace mRemoteNG.Config.Import
|
|
{
|
|
public interface IConnectionImporter<in TSource>
|
|
where TSource : class
|
|
{
|
|
void Import(TSource source, ContainerInfo destinationContainer);
|
|
}
|
|
} |