Archive meeting workflow and screenshot changes

This commit is contained in:
2026-05-27 12:55:19 +02:00
parent 2422236ef7
commit 12832dde84
48 changed files with 3041 additions and 43 deletions
@@ -0,0 +1,9 @@
namespace MeetingAssistant.Screenshots;
public sealed class UnavailableActiveWindowScreenshotCapture : IActiveWindowScreenshotCapture
{
public Task<ActiveWindowScreenshot> CaptureAsync(CancellationToken cancellationToken)
{
throw new PlatformNotSupportedException("Active-window screenshot capture is only available on Windows.");
}
}