namespace MeetingAssistant.Recording; public sealed class UnavailableMeetingAudioSource : IMeetingAudioSource { public IAsyncEnumerable CaptureAsync(CancellationToken cancellationToken) { throw new PlatformNotSupportedException( "Meeting audio capture is only implemented for the Windows target in this version."); } }