using System; namespace Artemis.Core { /// /// Represents a data binding converter that acts as the bridge between a /// and a /// public interface IDataBindingConverter { /// /// Gets the type this converter supports /// public Type SupportedType { get; } } }