Remotely/ScreenCast.Linux/Services/AudioCapturerLinux.cs
2021-07-29 07:56:15 -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.
}
}
}