use const instead of strings

This commit is contained in:
Jeremy Wu 2020-11-09 08:24:31 +11:00
parent 8df4de982b
commit b962e4dcb1

View file

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.IO;
@ -14,11 +14,13 @@ namespace Flow.Launcher.Plugin.Program
public bool EnableStartMenuSource { get; set; } = true;
public bool EnableRegistrySource { get; set; } = true;
public string CustomizedExploere { get; set; } = "exploere";
public string CustomizedExplorer { get; set; } = Explorer;
public string CustomizedArgs { get; set; } = "";
internal const char SuffixSeperator = ';';
internal const string Explorer = "explorer";
/// <summary>
/// Contains user added folder location contents as well as all user disabled applications
/// </summary>