// ReSharper disable CheckNamespace
namespace DTS.Common.Base
{
///
/// Provides an easy way to recognize a class that exposes a HeaderInfo that can be used to bind to a header from XAML.
///
/// The HeaderInfo type.
public interface IHeaderInfoProvider
{
///
/// Gets the header info of type T.
///
T HeaderInfo { get; }
}
}