namespace WebDAVSharp.Server.Adapters {
	/// 
	/// This interface is implemented by other adapters in the WebDAV#
	/// project, to facilitate access to the underlying adapted object.
	/// 
	/// The type of internal instance that is adapted.
	public interface IAdapter {
		/// 
		/// Gets the internal instance that was adapted for WebDAV#.
		/// 
		/// 
		/// The adapted instance.
		/// 
		T AdaptedInstance {
			get;
		}
	}
}