aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Networking/Configuration/NetworkConfigurationStore.cs
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2023-11-10 11:10:51 -0500
committerPatrick Barron <barronpm@gmail.com>2023-11-12 10:24:35 -0500
commite463dbda47cc51d9e774e867140921f001a3a52a (patch)
tree27dec089574867d4d855a1453f6144f6923e5460 /Jellyfin.Networking/Configuration/NetworkConfigurationStore.cs
parent9595636d6105bbe77292d87c7016c21f9df8d4c7 (diff)
Move network configuration to MediaBrowser.Common
Diffstat (limited to 'Jellyfin.Networking/Configuration/NetworkConfigurationStore.cs')
-rw-r--r--Jellyfin.Networking/Configuration/NetworkConfigurationStore.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/Jellyfin.Networking/Configuration/NetworkConfigurationStore.cs b/Jellyfin.Networking/Configuration/NetworkConfigurationStore.cs
deleted file mode 100644
index a268ebb68..000000000
--- a/Jellyfin.Networking/Configuration/NetworkConfigurationStore.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using MediaBrowser.Common.Configuration;
-
-namespace Jellyfin.Networking.Configuration
-{
- /// <summary>
- /// A configuration that stores network related settings.
- /// </summary>
- public class NetworkConfigurationStore : ConfigurationStore
- {
- /// <summary>
- /// The name of the configuration in the storage.
- /// </summary>
- public const string StoreKey = "network";
-
- /// <summary>
- /// Initializes a new instance of the <see cref="NetworkConfigurationStore"/> class.
- /// </summary>
- public NetworkConfigurationStore()
- {
- ConfigurationType = typeof(NetworkConfiguration);
- Key = StoreKey;
- }
- }
-}