Places Linux, refactor

This commit is contained in:
2022-05-28 23:38:56 +02:00
parent fbf36b890b
commit 74a8f66db1
6 changed files with 159 additions and 18 deletions

View File

@@ -0,0 +1,14 @@
namespace FileTime.GuiApp.IconProviders;
public enum SpecialPathType
{
Home,
Downloads,
Music,
Videos,
Desktop,
Documents,
Images,
Templates,
PublicShare
}

View File

@@ -0,0 +1,9 @@
using FileTime.App.Core.Services;
using FileTime.GuiApp.IconProviders;
namespace FileTime.GuiApp.Services;
public interface IPlacesService : IStartupHandler
{
Dictionary<string, SpecialPathType> GetSpecialPaths();
}