blob: bb2fbaa178e784893b564f051a40bfe6008fb9e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//-----------------------------------------------------------------------
// <copyright file="ConsumerSecuritySettings.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. 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() {
}
}
}
|