Mark van Renswoude
cae557e7e1
Added VoiceMeeter plugin (run macro and get status) Added Inno Setup script Added Fusion 360 files for housing designs
13 lines
332 B
C#
13 lines
332 B
C#
using MassiveKnob.Plugin.CoreAudio.Base;
|
|
|
|
namespace MassiveKnob.Plugin.CoreAudio.GetDefault
|
|
{
|
|
public class DeviceGetDefaultActionSettings : BaseDeviceSettings
|
|
{
|
|
public bool Playback { get; set; } = true;
|
|
public bool Communications { get; set; } = true;
|
|
|
|
public bool Inverted { get; set; }
|
|
}
|
|
}
|