mirror of
https://github.com/Radarr/Radarr
synced 2026-01-06 07:32:55 +01:00
12 lines
333 B
C#
12 lines
333 B
C#
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public class PostgresOptions
|
|
{
|
|
public string Host { get; set; }
|
|
public int Port { get; set; }
|
|
public string User { get; set; }
|
|
public string Password { get; set; }
|
|
public string MainDb { get; set; }
|
|
public string LogDb { get; set; }
|
|
}
|
|
}
|