From 1c5e75b0252b9a25857cb6a2b9ec700dbb30fb08 Mon Sep 17 00:00:00 2001 From: Aviv Cohn Date: Wed, 10 Dec 2025 09:01:54 -0500 Subject: [PATCH] fix: move UDMApi classes to PepperDash.Essentials.Core namespace --- .../UDMApi/CustomProperties.cs | 2 +- .../UDMApi/DeviceStatus.cs | 2 +- src/PepperDash.Essentials.Core/UDMApi/IUDMAPI.cs | 12 ++++++++++++ .../UDMApi/RoomResponse.cs | 2 +- .../UDMApi/StandardProperties.cs | 2 +- .../UDMApi/StatusProperties.cs | 2 +- 6 files changed, 17 insertions(+), 5 deletions(-) create mode 100644 src/PepperDash.Essentials.Core/UDMApi/IUDMAPI.cs diff --git a/src/PepperDash.Essentials.Core/UDMApi/CustomProperties.cs b/src/PepperDash.Essentials.Core/UDMApi/CustomProperties.cs index 7aa9bc1f..8f37ad59 100644 --- a/src/PepperDash.Essentials.Core/UDMApi/CustomProperties.cs +++ b/src/PepperDash.Essentials.Core/UDMApi/CustomProperties.cs @@ -1,6 +1,6 @@ using Newtonsoft.Json; -namespace PepperDash.Essentials.Core.UDMApi +namespace PepperDash.Essentials.Core { internal class CustomProperties diff --git a/src/PepperDash.Essentials.Core/UDMApi/DeviceStatus.cs b/src/PepperDash.Essentials.Core/UDMApi/DeviceStatus.cs index d89e5f74..3b8a5fc0 100644 --- a/src/PepperDash.Essentials.Core/UDMApi/DeviceStatus.cs +++ b/src/PepperDash.Essentials.Core/UDMApi/DeviceStatus.cs @@ -1,6 +1,6 @@ using Newtonsoft.Json; -namespace PepperDash.Essentials.Core.UDMApi +namespace PepperDash.Essentials.Core { internal class DeviceStatus { diff --git a/src/PepperDash.Essentials.Core/UDMApi/IUDMAPI.cs b/src/PepperDash.Essentials.Core/UDMApi/IUDMAPI.cs new file mode 100644 index 00000000..44b7a5a7 --- /dev/null +++ b/src/PepperDash.Essentials.Core/UDMApi/IUDMAPI.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace PepperDash.Essentials.Core +{ + internal interface IUDMAPI + { + } +} diff --git a/src/PepperDash.Essentials.Core/UDMApi/RoomResponse.cs b/src/PepperDash.Essentials.Core/UDMApi/RoomResponse.cs index 7192cd7e..716ebc49 100644 --- a/src/PepperDash.Essentials.Core/UDMApi/RoomResponse.cs +++ b/src/PepperDash.Essentials.Core/UDMApi/RoomResponse.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using Newtonsoft.Json; -namespace PepperDash.Essentials.Core.UDMApi +namespace PepperDash.Essentials.Core { /// /// Represents the complete room response for UDM API diff --git a/src/PepperDash.Essentials.Core/UDMApi/StandardProperties.cs b/src/PepperDash.Essentials.Core/UDMApi/StandardProperties.cs index 2014585c..175d3fc4 100644 --- a/src/PepperDash.Essentials.Core/UDMApi/StandardProperties.cs +++ b/src/PepperDash.Essentials.Core/UDMApi/StandardProperties.cs @@ -1,6 +1,6 @@ using Newtonsoft.Json; -namespace PepperDash.Essentials.Core.UDMApi +namespace PepperDash.Essentials.Core { internal class StandardProperties { diff --git a/src/PepperDash.Essentials.Core/UDMApi/StatusProperties.cs b/src/PepperDash.Essentials.Core/UDMApi/StatusProperties.cs index cf66420f..0317e017 100644 --- a/src/PepperDash.Essentials.Core/UDMApi/StatusProperties.cs +++ b/src/PepperDash.Essentials.Core/UDMApi/StatusProperties.cs @@ -1,7 +1,7 @@ using Newtonsoft.Json; using System.Collections.Generic; -namespace PepperDash.Essentials.Core.UDMApi +namespace PepperDash.Essentials.Core { internal class StatusProperties {