blob: a07e9732cef70bcabeb4b92cd06d35ad5c87920a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//-----------------------------------------------------------------------
// <copyright file="OAuth2ResourceServerElement.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Configuration {
using System.Configuration;
/// <summary>
/// Represents the <oauth2/resourceServer> element in the host's .config file.
/// </summary>
internal class OAuth2ResourceServerElement : ConfigurationElement {
/// <summary>
/// Initializes a new instance of the <see cref="OAuth2ResourceServerElement"/> class.
/// </summary>
internal OAuth2ResourceServerElement() {
}
}
}
|