mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-30 21:04:48 +00:00
13 lines
324 B
C#
13 lines
324 B
C#
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Defines a class that is capable of loading device types
|
|
/// </summary>
|
|
public interface IDeviceFactory
|
|
{
|
|
/// <summary>
|
|
/// Loads all the types to the DeviceFactory
|
|
/// </summary>
|
|
void LoadTypeFactories();
|
|
}
|
|
} |