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