This commit is contained in:
Dan Clark
2025-02-09 13:51:25 +00:00
parent f2e501454e
commit 0afe621f59
22 changed files with 147 additions and 122 deletions
@@ -1,12 +1,13 @@
namespace Toolkit.Foundation;
public interface IMicrocontrollerModuleDescriptor<TModule> :
IMicrocontrollerModuleDescriptor where TModule : IMicrocontrollerModule
public interface IMicroControllerModuleDescriptor<TModule> :
IMicroControllerModuleDescriptor
where TModule : IMicroControllerModule
{
Func<TModule>? Factory { get; }
}
public interface IMicrocontrollerModuleDescriptor
public interface IMicroControllerModuleDescriptor
{
Type Type { get; }
}