using Microcontroller; namespace TheXamlGuy.Framework.Microcontroller; public interface IMicrocontrollerModuleDescriptor : IMicrocontrollerModuleDescriptor where TModule : IMicrocontrollerModule { Func? Factory { get; } } public interface IMicrocontrollerModuleDescriptor { Type Type { get; } }