diff --git a/src/PepperDash.Essentials.Devices.Common/Codec/Cisco/IPresenterTrack.cs b/src/PepperDash.Essentials.Devices.Common/Codec/Cisco/IPresenterTrack.cs
index b38225fe..15b378f8 100644
--- a/src/PepperDash.Essentials.Devices.Common/Codec/Cisco/IPresenterTrack.cs
+++ b/src/PepperDash.Essentials.Devices.Common/Codec/Cisco/IPresenterTrack.cs
@@ -8,6 +8,30 @@ using System.Threading.Tasks;
namespace PepperDash.Essentials.Devices.Common.Codec.Cisco
{
+ ///
+ /// Describes the available tracking modes for a Cisco codec's Presenter Track feature.
+ ///
+ public enum PresenterTrackMode
+ {
+ ///
+ /// Presenter Track is turned off.
+ ///
+ Off,
+ ///
+ /// Presenter Track follows the speaker's movements.
+ ///
+ Follow,
+ ///
+ /// Presenter Track is set to background mode, where it tracks the speaker but does not actively follow.
+ ///
+ Background,
+ ///
+ /// Presenter Track is set to persistent mode, where it maintains a fixed position or focus on the speaker.
+ ///
+ Persistent
+ }
+
+
///
/// Describes the Presenter Track controls for a Cisco codec.
///