From 6db7581295d746040b0a84ffa058f1f9d53f0ca9 Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Fri, 20 Mar 2026 14:48:58 -0600 Subject: [PATCH] feat: add Unknown event type to NetworkSwitchPortEventType enum for improved event handling --- .../DeviceTypeInterfaces/INetworkSwitchControl.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/INetworkSwitchControl.cs b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/INetworkSwitchControl.cs index 6174ff28..0aaf89d2 100644 --- a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/INetworkSwitchControl.cs +++ b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/INetworkSwitchControl.cs @@ -84,6 +84,11 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces /// public enum NetworkSwitchPortEventType { + /// + /// Indicates that the type of event is unknown or cannot be determined. + /// + Unknown, + /// /// Indicates that the access VLAN on a port has changed, either through a successful call to SetPortVlan ///