mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
16 lines
549 B
C#
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";
|
|
}
|
|
}
|