mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-26 10:54:59 +00:00
11 lines
269 B
C#
11 lines
269 B
C#
using PepperDash.Core;
|
|
using PepperDash.Essentials.Core.Config;
|
|
|
|
namespace PepperDash.Essentials.Core.Plugins
|
|
{
|
|
public interface IPluginDeviceConfig
|
|
{
|
|
string MinimumEssentialsFrameworkVersion { get; }
|
|
IKeyed BuildDevice(DeviceConfig dc);
|
|
}
|
|
} |