namespace RdtClient.Data.Models.Internal;
public class SettingKeyValuePair
{
///
/// The unique human-readable key identifying the setting
///
/// General:LogLevel
/// "Provider:Default:ExcludeRegex
public String Key { get; set; } = default!;
///
/// The value of the setting
///
public Object? Value { get; set; }
}