blob: ca5bc035c4ceb880ebcd5bbfc1302051986e53c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//-----------------------------------------------------------------------
// <copyright file="ConsumerSecuritySettings.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OAuth {
/// <summary>
/// Security settings that are applicable to consumers.
/// </summary>
internal class ConsumerSecuritySettings : SecuritySettings {
/// <summary>
/// Initializes a new instance of the <see cref="ConsumerSecuritySettings"/> class.
/// </summary>
internal ConsumerSecuritySettings() {
}
}
}
|