14 lines
314 B
C#
14 lines
314 B
C#
using System;
|
|
|
|
namespace Pulsar.Server.Plugins
|
|
{
|
|
public interface IServerPlugin
|
|
{
|
|
string Name { get; }
|
|
Version Version { get; }
|
|
string Description { get; }
|
|
string Type { get; }
|
|
void Initialize(IServerContext context);
|
|
bool AutoLoadToClients => false;
|
|
}
|
|
} |