Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Search/Constants.cs
2020-05-19 18:46:42 +10:00

16 lines
549 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Flow.Launcher.Plugin.Explorer.Search
{
public static class Constants
{
public const string FolderImagePath = "Images\\folder.png";
public const string FileImagePath = "Images\\file.png";
public const string DeleteFileFolderImagePath = "Images\\deletefilefolder.png";
public const string CopyImagePath = "Images\\copy.png";
public const string DefaultFolderSubtitleString = "Ctrl + Enter to open the directory";
}
}