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