1
0
mirror of synced 2024-07-04 20:20:36 +00:00
MassiveKnob/Windows/MassiveKnob.Plugin.CoreAudio/Base/BaseDeviceSettings.cs
2021-02-28 14:40:51 +01:00

13 lines
285 B
C#

using System;
namespace MassiveKnob.Plugin.CoreAudio.Base
{
public class BaseDeviceSettings
{
public Guid? DeviceId { get; set; }
// TODO (nice to have) more options, like positioning and style
public bool OSD { get; set; } = true;
}
}