//-----------------------------------------------------------------------
//
// Copyright (c) Andrew Arnott. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOAuth.Test {
///
/// Information necessary to initialize a ,
/// and to tell a about it.
///
internal class ConsumerDescription {
///
/// Initializes a new instance of the class.
///
/// The consumer key.
/// The consumer secret.
internal ConsumerDescription(string key, string secret) {
this.ConsumerKey = key;
this.ConsumerSecret = secret;
}
///
/// Gets or sets the consumer key.
///
/// The consumer key.
internal string ConsumerKey { get; set; }
///
/// Gets or sets the consumer secret.
///
/// The consumer secret.
internal string ConsumerSecret { get; set; }
}
}