namespace AIStudio.Settings;
///
/// A data structure to map a name to a value.
///
/// The name of the value, to be displayed in the UI.
/// The value to be stored.
/// The type of the value to store.
public readonly record struct ConfigurationSelectData(string Name, T Value);