Mark van Renswoude
28c25c8b43
Implemented mute/unmute input and output actions Changed MockDevice to EmulatorDevice with UI for easier testing
13 lines
432 B
C#
13 lines
432 B
C#
using MassiveKnob.Plugin.CoreAudio.Base;
|
|
|
|
namespace MassiveKnob.Plugin.CoreAudio.SetVolume
|
|
{
|
|
public class DeviceSetVolumeActionSettingsViewModel : BaseDeviceSettingsViewModel<DeviceSetVolumeActionSettings>
|
|
{
|
|
// ReSharper disable once SuggestBaseTypeForParameter - by design
|
|
public DeviceSetVolumeActionSettingsViewModel(DeviceSetVolumeActionSettings settings) : base(settings)
|
|
{
|
|
}
|
|
}
|
|
}
|