//-----------------------------------------------------------------------
//
// Copyright (c) Andrew Arnott. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOAuth.Messaging.Bindings {
///
/// The contract a message that is signed must implement.
///
internal interface ITamperResistantProtocolMessage : IProtocolMessage {
///
/// Gets or sets the message signature.
///
string Signature { get; set; }
}
}