Add clipboard writer

This commit is contained in:
TheXamlGuy
2024-07-06 20:40:30 +01:00
parent 02c7c03251
commit 051dcf683e
3 changed files with 33 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
namespace Toolkit.Foundation;
public interface IClipboardWriter
{
Task Write<TContent>(TContent content);
}