mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-18 09:35:48 +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;
|
|
}
|
|
}
|
|
}
|