1
0
mirror of synced 2024-10-05 14:56:09 +00:00
MassiveKnob/Windows/MassiveKnob.Plugin.CoreAudio/Base/BaseDeviceSettings.cs
Mark van Renswoude 28c25c8b43 Implemented OSD
Implemented mute/unmute input and output actions
Changed MockDevice to EmulatorDevice with UI for easier testing
2021-02-24 19:35:01 +01:00

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;
}
}