forked from i8beef/SAML2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStateConfig.cs
More file actions
30 lines (27 loc) · 794 Bytes
/
Copy pathStateConfig.cs
File metadata and controls
30 lines (27 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System.Collections.Generic;
namespace SAML2.Config
{
/// <summary>
/// State config item.
/// </summary>
public class StateConfig
{
/// <summary>
/// Initializes a new instance of the <see cref="StateConfig"/> class.
/// </summary>
public StateConfig()
{
Settings = new Dictionary<string, string>();
}
/// <summary>
/// Gets or sets the state service factory.
/// </summary>
/// <value>The logging factory.</value>
public string StateServiceFactory { get; set; }
/// <summary>
/// Gets or sets the settings.
/// </summary>
/// <value>The settings.</value>
public IDictionary<string, string> Settings { get; set; }
}
}