blob: fc70f6f5dbb5aadcf298fa8baf11247227c3bc7f [file] [log] [blame]
using System;
namespace BaSys40.Utils.DIExtensions
{
public interface IDIExtension
{
Type GetRegisteredTypeFor(Type t);
bool IsTypeRegistered(Type t);
}
}