2026-04-02 20:54:28 -05:00
|
|
|
namespace StevanFreeborn.Extensions.Configuration.Secure.Sample;
|
|
|
|
|
|
|
|
|
|
public sealed record DatabaseSettings
|
|
|
|
|
{
|
|
|
|
|
public string ConnectionString { get; init; } = string.Empty;
|
|
|
|
|
public int Timeout { get; init; }
|
|
|
|
|
public int RetryCount { get; init; }
|
2026-04-06 09:01:23 -05:00
|
|
|
}
|