Mark van Renswoude
28c25c8b43
Implemented mute/unmute input and output actions Changed MockDevice to EmulatorDevice with UI for easier testing
13 lines
270 B
C#
13 lines
270 B
C#
using System;
|
|
|
|
namespace MassiveKnob.Plugin.CoreAudio.Base
|
|
{
|
|
public class BaseDeviceSettings
|
|
{
|
|
public Guid? DeviceId { get; set; }
|
|
|
|
// TODO more options, like positioning and style
|
|
public bool OSD { get; set; } = true;
|
|
}
|
|
}
|