aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ConfigurationOptions.cs
blob: b9b95d65d5beacfa0afa4757472497bdaa36f1ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System.Collections.Generic;

namespace Emby.Server.Implementations
{
    public static class ConfigurationOptions
    {
        public static readonly Dictionary<string, string> Configuration = new Dictionary<string, string>
        {
            {"ManagedFileSystem:DefaultDirectory", null},
            {"ManagedFileSystem:EnableSeparateFileAndDirectoryQueries", "True"}
        };
    }
}