mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 19:13:37 +00:00
Co-authored-by: krut_ni <nils.kruthoff@dlr.de> Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
9 lines
390 B
C#
9 lines
390 B
C#
namespace AIStudio.Settings;
|
|
|
|
/// <summary>
|
|
/// A data structure to map a name to a value.
|
|
/// </summary>
|
|
/// <param name="Name">The name of the value, to be displayed in the UI.</param>
|
|
/// <param name="Value">The value to be stored.</param>
|
|
/// <typeparam name="T">The type of the value to store.</typeparam>
|
|
public readonly record struct ConfigurationSelectData<T>(string Name, T Value); |