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 {