//-----------------------------------------------------------------------
//
// Copyright (c) Outercurve Foundation. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OAuth2.ChannelElements {
using System.Security.Cryptography;
using Messaging;
///
/// A message that carries some kind of token from the client to the authorization or resource server.
///
internal interface IAuthorizationCarryingRequest : IDirectedProtocolMessage {
///
/// Gets the authorization that the code or token describes.
///
IAuthorizationDescription AuthorizationDescription { get; }
}
}