using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DotNetOAuth {
/// <summary>
/// Implemented by messages that are sent as requests.
/// </summary>
public interface IProtocolMessageRequest : IProtocolMessage {
/// <summary>
/// The URL of the intended receiver of this message.
/// </summary>
Uri Recipient {
get;
set;
}
}
}