aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Networking/Configuration/NetworkConfigurationStore.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2023-11-14 21:10:41 +0100
committerGitHub <noreply@github.com>2023-11-14 21:10:41 +0100
commit3ec2d5592ed296f444ae5e5dafd23985def13110 (patch)
tree4423723a661e1f8656ce95edec1bd249fc46fe5a /Jellyfin.Networking/Configuration/NetworkConfigurationStore.cs
parentea546230586a00a75db5c379db904e47cbbf270b (diff)
parentde0241e975c6b765f2af465734635a1a024a142a (diff)
Merge pull request #10574 from barronpm/dlna-plugin3
Move DLNA to Plugin (Part 1 (Part 2))
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;
- }
- }
-}