13 lines
373 B
C#
13 lines
373 B
C#
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; }
|
|
}
|
|
}
|