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