mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
13 lines
260 B
C#
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.
|
|
}
|
|
}
|
|
}
|