docs: flush out sample console app

This commit is contained in:
Stevan Freeborn
2026-04-02 20:54:28 -05:00
parent b61454b118
commit 30e392020b
5 changed files with 443 additions and 41 deletions
@@ -0,0 +1,8 @@
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; }
}