Minor fixes

This commit is contained in:
2024-02-25 21:22:50 +01:00
parent 8b66541529
commit 3a17924f65
9 changed files with 116 additions and 12 deletions

View File

@@ -0,0 +1,8 @@
namespace BasicDotnetTemplate.Models.Settings;
public class PrivateSettings
{
#nullable enable
public DatabaseConnection? DatabaseConnection { get; set; }
#nullable disable
}