mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
27 lines
407 B
C#
27 lines
407 B
C#
namespace ServerManagerTool.Plugin.Common
|
|
{
|
|
public sealed class PluginItem
|
|
{
|
|
internal PluginItem()
|
|
{
|
|
}
|
|
|
|
public IPlugin Plugin
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string PluginFile
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string PluginType
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|