//-----------------------------------------------------------------------
//
// Copyright (c) Andrew Arnott. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOAuth {
using System;
///
/// Implemented by messages that are sent as requests.
///
internal interface IProtocolMessageRequest : IProtocolMessage {
///
/// Gets or sets the URL of the intended receiver of this message.
///
Uri Recipient {
get;
set;
}
}
}