mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-25 18:34:44 +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);
|
|
}
|
|
} |