Files
Finlytic/FinlyticCore/Models/Settings/SettingKey.cs
T

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);