//----------------------------------------------------------------------- // // Copyright (c) Outercurve Foundation. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOpenAuth.Test.OAuth { using DotNetOpenAuth.OAuth; /// /// Information necessary to initialize a , /// and to tell a about it. /// /// /// This type is immutable. /// 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 the consumer key. /// /// The consumer key. internal string ConsumerKey { get; private set; } /// /// Gets the consumer secret. /// /// The consumer secret. internal string ConsumerSecret { get; private set; } } }