From 44dfe554a894561d3878c8f204d989e4d5a72d72 Mon Sep 17 00:00:00 2001 From: JPVenson Date: Thu, 20 Feb 2025 09:55:02 +0000 Subject: Moved Database projects under /src removed old pgsql references --- .../DbConfiguration/PostgreSqlOptions.cs | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 Jellyfin.Database/Jellyfin.Database.Implementations/DbConfiguration/PostgreSqlOptions.cs (limited to 'Jellyfin.Database/Jellyfin.Database.Implementations/DbConfiguration/PostgreSqlOptions.cs') diff --git a/Jellyfin.Database/Jellyfin.Database.Implementations/DbConfiguration/PostgreSqlOptions.cs b/Jellyfin.Database/Jellyfin.Database.Implementations/DbConfiguration/PostgreSqlOptions.cs deleted file mode 100644 index 1f7c30b09..000000000 --- a/Jellyfin.Database/Jellyfin.Database.Implementations/DbConfiguration/PostgreSqlOptions.cs +++ /dev/null @@ -1,39 +0,0 @@ -using System; - -namespace Jellyfin.Server.Implementations.DatabaseConfiguration; - -/// -/// Options specific to run jellyfin on a postgreSql database. -/// -public class PostgreSqlOptions -{ - /// - /// Gets or Sets the Port. Defaults to 5432. - /// - public required int Port { get; set; } = 5432; - - /// - /// Gets or Sets the Server name. - /// - public required string ServerName { get; set; } - - /// - /// Gets or Sets the username. - /// - public required string Username { get; set; } - - /// - /// Gets or Sets the password. - /// - public required string Password { get; set; } - - /// - /// Gets or Sets the database name. Defaults to "Jellyfin". - /// - public string DatabaseName { get; set; } = "Jellyfin"; - - /// - /// Gets or Sets the timeout in secounds before a running command is terminated. Defaults to 30. - /// - public int Timeout { get; set; } = 30; -} -- cgit v1.2.3