1
0
mirror of synced 2024-07-07 13:30:35 +00:00
MassiveKnob/Windows/MassiveKnob.Plugin.CoreAudio/Base/BaseDeviceSettings.cs

13 lines
285 B
C#
Raw Normal View History

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