using MediaBrowser.Common.Configuration;
namespace Jellyfin.Networking.Configuration
{
    /// 
    /// A configuration that stores network related settings.
    /// 
    public class NetworkConfigurationStore : ConfigurationStore
    {
        /// 
        /// The name of the configuration in the storage.
        /// 
        public const string StoreKey = "network";
        /// 
        /// Initializes a new instance of the  class.
        /// 
        public NetworkConfigurationStore()
        {
            ConfigurationType = typeof(NetworkConfiguration);
            Key = StoreKey;
        }
    }
}