using System;
using System.Collections.Generic;
using System.Text;
namespace DotNetOAuth {
/// <summary>
/// The interface that classes must implement to be serialized/deserialized
/// as OAuth messages.
/// </summary>
interface IProtocolMessage {
}
}