From a1310f2de7354d2ccaf2f6f0cb51bea8b948afe7 Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Wed, 27 Mar 2024 14:27:30 -0600 Subject: [PATCH] docs: added comment to interface --- .gitignore | 1 + .../Devices/IVolumeAndAudioInterfaces.cs | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 739a60ab..36d84cbc 100644 --- a/.gitignore +++ b/.gitignore @@ -390,3 +390,4 @@ MigrationBackup/ FodyWeavers.xsd essentials-framework/Essentials Interfaces/PepperDash_Essentials_Interfaces/PepperDash_Essentials_Interfaces.csproj .DS_Store +/._PepperDash.Essentials.sln diff --git a/src/PepperDash.Essentials.Core/Devices/IVolumeAndAudioInterfaces.cs b/src/PepperDash.Essentials.Core/Devices/IVolumeAndAudioInterfaces.cs index eb95f135..5d8e0724 100644 --- a/src/PepperDash.Essentials.Core/Devices/IVolumeAndAudioInterfaces.cs +++ b/src/PepperDash.Essentials.Core/Devices/IVolumeAndAudioInterfaces.cs @@ -64,6 +64,9 @@ namespace PepperDash.Essentials.Core IntFeedback VolumeLevelFeedback { get; } } + /// + /// Adds the ability to display a raw volume level and the units of that level + /// public interface IBasicVolumeWithFeedbackAdvanced : IBasicVolumeWithFeedback { int RawVolumeLevel { get; }