6 lines
223 B
C#
6 lines
223 B
C#
namespace FinlyticCore.Models.Settings;
|
|
|
|
/// <summary>
|
|
/// Verknüpft einen Setting-Key typsicher mit seinem Rückgabetyp T und einem Standardwert.
|
|
/// </summary>
|
|
public record SettingKey<T>(string Name, T DefaultValue); |