Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Search/Constants.cs

17 lines
615 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 IndexImagePath = "Images\\index.png";
public const string DefaultFolderSubtitleString = "Ctrl + Enter to open the directory";
}
}