- add button config class

master
Simon G 5 years ago
parent 42c7ac457a
commit 88f3b434b9
  1. 14
      Lib.Audio/DeviceButtonConfiguration.cs
  2. 12
      Lib.Audio/Interfaces/IDeviceButtonConfiguration.cs

@ -0,0 +1,14 @@
// Author: Gockner, Simon
// Created: 2021-04-08
// Copyright(c) 2021 SimonG. All Rights Reserved.
using Lib.Audio.Interfaces;
namespace Lib.Audio
{
public class DeviceButtonConfiguration : IDeviceButtonConfiguration
{
public int NumberOfButtons { get; set; }
public bool HasMuteButton { get; set; }
}
}

@ -0,0 +1,12 @@
// Author: Gockner, Simon
// Created: 2021-04-08
// Copyright(c) 2021 SimonG. All Rights Reserved.
namespace Lib.Audio.Interfaces
{
public interface IDeviceButtonConfiguration
{
int NumberOfButtons { get; set; }
bool HasMuteButton { get; set; }
}
}
Loading…
Cancel
Save