Remotely/ScreenCast.Linux/Services/AudioCapturerLinux.cs

16 lines
327 B
C#

using Remotely.ScreenCast.Core.Interfaces;
using System;
using System.Collections.Generic;
using System.Text;
namespace Remotely.ScreenCast.Linux.Services
{
public class AudioCapturerLinux : IAudioCapturer
{
public void ToggleAudio(bool toggleOn)
{
// Not implemented.
}
}
}