using System; namespace Inspectron.Settings { public interface IAdaptable { /// /// Gets an adapter of the specified type or null /// Adapter type /// Adapter of the specified type or null if no adapter available object GetAdapter(Type type); } }