chr
2024-08-07 22beee93f14d042aa184148c53efb79e23416526
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace PdmSwPlugin.Common.Constants
{
    public class Settings
    {
        public static readonly string MODE = "Mode";
        public static readonly string TimeOut = "TimeOut";
        public static readonly string BaseAddress = "BaseAddress";
        public static readonly string SwFilePath = "SwFilePath";
        public static readonly string UserPartsDir = "UserPartsDir";
        public static readonly string LocalCacheRootPath = "LocalCacheRootPath";
 
        public static readonly string MAX_WORK_THREADS = "MaxWorkThreads";
        public static readonly string MAX_WAIT_THREADS = "MaxWaitThreads";
        public static readonly string LOG_DEBUG = "LogDebug";
        public static readonly string Prefixes = "Prefixes";
        public static readonly string XCSuffixes = "XCSuffixes";
        public static readonly string MNSuffixes = "MNSuffixes";
        public static readonly string ClassicLogin = "ClassicLogin";
    }
}