fix: move UDMApi classes to PepperDash.Essentials.Core namespace

This commit is contained in:
Aviv Cohn
2025-12-10 09:01:54 -05:00
parent 9ef23cfcfe
commit 1c5e75b025
6 changed files with 17 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
using Newtonsoft.Json;
namespace PepperDash.Essentials.Core.UDMApi
namespace PepperDash.Essentials.Core
{
internal class CustomProperties

View File

@@ -1,6 +1,6 @@
using Newtonsoft.Json;
namespace PepperDash.Essentials.Core.UDMApi
namespace PepperDash.Essentials.Core
{
internal class DeviceStatus
{

View File

@@ -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
{
}
}

View File

@@ -1,7 +1,7 @@
using System.Collections.Generic;
using Newtonsoft.Json;
namespace PepperDash.Essentials.Core.UDMApi
namespace PepperDash.Essentials.Core
{
/// <summary>
/// Represents the complete room response for UDM API

View File

@@ -1,6 +1,6 @@
using Newtonsoft.Json;
namespace PepperDash.Essentials.Core.UDMApi
namespace PepperDash.Essentials.Core
{
internal class StandardProperties
{

View File

@@ -1,7 +1,7 @@
using Newtonsoft.Json;
using System.Collections.Generic;
namespace PepperDash.Essentials.Core.UDMApi
namespace PepperDash.Essentials.Core
{
internal class StatusProperties
{