//-----------------------------------------------------------------------
//
// Copyright (c) Andrew Arnott. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOpenAuth {
///
/// An interface implemented by DotNetOpenAuth extensions that need to create host-specific instances of specific interfaces.
///
public interface IRequireHostFactories {
///
/// Gets or sets the host factories used by this instance.
///
///
/// The host factories.
///
IHostFactories HostFactories { get; set; }
}
}