Changes
Build and Push Docker Images / build (push) Failing after 1s

This commit is contained in:
2026-05-07 14:25:16 +03:00
parent e3bfcb11a4
commit 2807672074
15 changed files with 292 additions and 119 deletions
@@ -0,0 +1,12 @@
namespace Shared.Models.Settings
{
public class DatabaseSettings
{
public string Host { get; set; } = "";
public int Port { get; set; }
public string Name { get; set; } = "";
public string User { get; set; } = "";
public string Password { get; set; } = "";
public bool TrustServerCertificate { get; set; }
}
}