//----------------------------------------------------------------------- // // Copyright (c) Outercurve Foundation. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOpenAuth.Configuration { using System.Configuration; /// /// Represents the <oauth2/client> element in the host's .config file. /// internal class OAuth2ClientElement : ConfigurationElement { /// /// Initializes a new instance of the class. /// internal OAuth2ClientElement() { } } }