Initial first version.

This commit is contained in:
Ebbe Baß
2026-08-13 10:04:59 +02:00
parent df725b43c4
commit 940e80b630
22 changed files with 890 additions and 0 deletions
@@ -0,0 +1,11 @@
namespace EbbesMemeClipboard.Services;
public interface IClipboardService
{
/// <summary>
/// Places a local file on the clipboard using multiple formats simultaneously so both
/// file-paste apps (Discord/Slack/Teams) and bitmap-only apps (Paint) get something
/// useful, and animated GIFs survive as animations wherever possible.
/// </summary>
Task CopyLocalFileAsync(string filePath);
}