mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-21 22:05:43 -04:00
13 lines
333 B
C#
13 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; }
|
|
}
|
|
}
|