You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
474 B
24 lines
474 B
namespace Common.AppSettings;
|
|
|
|
[Serializable]
|
|
public class AppSetting
|
|
{
|
|
public string? Key { get; set; }
|
|
public string? Value { get; set; }
|
|
|
|
/// <summary>
|
|
/// Parameterless constructor for serialization.
|
|
/// </summary>
|
|
public AppSetting()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Constructor with Initialization.
|
|
/// </summary>
|
|
public AppSetting(string key, string value)
|
|
{
|
|
this.Key = key;
|
|
this.Value = value;
|
|
}
|
|
}
|
|
|