From 916e897ed25f74b0112e51758e673f18ad13af1d Mon Sep 17 00:00:00 2001 From: JPVenson Date: Wed, 4 Jun 2025 01:53:37 +0300 Subject: Allow custom plugin provided database providers to be loaded (#14171) --- .../DbConfiguration/CustomDatabaseOption.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/Jellyfin.Database/Jellyfin.Database.Implementations/DbConfiguration/CustomDatabaseOption.cs (limited to 'src/Jellyfin.Database/Jellyfin.Database.Implementations/DbConfiguration/CustomDatabaseOption.cs') diff --git a/src/Jellyfin.Database/Jellyfin.Database.Implementations/DbConfiguration/CustomDatabaseOption.cs b/src/Jellyfin.Database/Jellyfin.Database.Implementations/DbConfiguration/CustomDatabaseOption.cs new file mode 100644 index 000000000..fcb8f41b3 --- /dev/null +++ b/src/Jellyfin.Database/Jellyfin.Database.Implementations/DbConfiguration/CustomDatabaseOption.cs @@ -0,0 +1,19 @@ +using System.Collections.Generic; + +namespace Jellyfin.Database.Implementations.DbConfiguration; + +/// +/// The custom value option for custom database providers. +/// +public class CustomDatabaseOption +{ + /// + /// Gets or sets the key of the value. + /// + public required string Key { get; set; } + + /// + /// Gets or sets the value. + /// + public required string Value { get; set; } +} -- cgit v1.2.3