Remotely/ScreenCast.Linux/Services/AudioCapturerLinux.cs
2020-04-11 09:52:46 -07:00

13 lines
260 B
C#

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