mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-07 16:03:07 +00:00
8 lines
151 B
C#
8 lines
151 B
C#
namespace DistTestCore
|
|
{
|
|
public abstract class PluginInterface
|
|
{
|
|
public abstract T GetPlugin<T>() where T : IProjectPlugin;
|
|
}
|
|
}
|