Files
Moonlight/Moonlight.Api/Configuration/DatabaseOptions.cs

10 lines
277 B
C#

namespace Moonlight.Api.Configuration;
public class DatabaseOptions
{
public string Host { get; set; }
public int Port { get; set; } = 5432;
public string Username { get; set; }
public string Password { get; set; }
public string Database { get; set; }
}