namespace Common.AppSettings;
[Serializable]
public class AppSetting
{
public string? Key { get; set; }
public string? Value { get; set; }
///
/// Parameterless constructor for serialization.
///
public AppSetting()
{
}
///
/// Constructor with Initialization.
///
public AppSetting(string key, string value)
{
this.Key = key;
this.Value = value;
}
}