Fix IBasicVolumeControls

fix: revert a change that split the interface but could break backwards compatibility #955
This commit is contained in:
jta
2022-06-13 13:22:23 -05:00
parent 1c252521f0
commit ebd978d917

View File

@@ -9,8 +9,11 @@ namespace PepperDash.Essentials.Core
/// <summary>
/// Defines minimal volume and mute control methods
/// </summary>
public interface IBasicVolumeControls : IHasVolumeControl, IHasMuteControl
public interface IBasicVolumeControls
{
void VolumeUp(bool pressRelease);
void VolumeDown(bool pressRelease);
void MuteToggle();
}
/// <summary>