Flow.Launcher/Plugins/Flow.Launcher.Plugin.Explorer/Search/QuickAccessLinks/AccessLink.cs

12 lines
261 B
C#
Raw Permalink Normal View History

2025-05-25 07:31:08 +00:00
namespace Flow.Launcher.Plugin.Explorer.Search.QuickAccessLinks
2020-06-06 12:13:22 +00:00
{
public class AccessLink
2020-06-06 12:13:22 +00:00
{
public string Path { get; set; }
2021-01-26 09:01:12 +00:00
public ResultType Type { get; set; } = ResultType.Folder;
2020-06-06 12:13:22 +00:00
2025-05-25 07:31:08 +00:00
public string Name { get; set; }
2020-06-06 12:13:22 +00:00
}
}