Base features

This commit is contained in:
2022-01-06 18:36:25 +01:00
parent 033b280175
commit 7b3584543e
60 changed files with 2576 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using FileTime.Core.Models;
using FileTime.Core.Providers;
namespace FileTime.App.Core.Clipboard
{
public class ClipboardItem : IAbsolutePath
{
public IContentProvider ContentProvider { get; }
public string Path { get; }
public ClipboardItem(IContentProvider contentProvider, string path)
{
ContentProvider = contentProvider;
Path = path;
}
}
}