Show icons when items are on clipbaord

This commit is contained in:
2023-07-28 00:12:00 +02:00
parent 0d8c5b8766
commit 27ebb1efa8
6 changed files with 40 additions and 21 deletions

View File

@@ -1,3 +1,4 @@
using System.Collections.ObjectModel;
using FileTime.Core.Command;
using FileTime.Core.Models;
@@ -6,7 +7,7 @@ namespace FileTime.App.Core.Services;
public interface IClipboardService
{
Type? CommandFactoryType { get; }
IReadOnlyList<FullName> Content { get; }
ReadOnlyObservableCollection<FullName> Content { get; }
void AddContent(FullName absolutePath);
void RemoveContent(FullName absolutePath);