aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2025-03-25 15:30:22 +0000
committerJPVenson <github@jpb.email>2025-03-25 15:30:22 +0000
commit160020c551f71441fec093f5a6b2ca2650d9a74d (patch)
tree4d9b38494dd38e265081d25814d842af9ef1b584 /Jellyfin.Data
parent7cd059c03305de3b6b5d27e3a97624e8ec24bfbb (diff)
WIP fixed namespaces
Diffstat (limited to 'Jellyfin.Data')
-rw-r--r--Jellyfin.Data/DayOfWeekHelper.cs2
-rw-r--r--Jellyfin.Data/UserEntityExtensions.cs4
2 files changed, 3 insertions, 3 deletions
diff --git a/Jellyfin.Data/DayOfWeekHelper.cs b/Jellyfin.Data/DayOfWeekHelper.cs
index 82abfb831..836860e0e 100644
--- a/Jellyfin.Data/DayOfWeekHelper.cs
+++ b/Jellyfin.Data/DayOfWeekHelper.cs
@@ -1,7 +1,7 @@
#pragma warning disable CS1591
using System;
-using Jellyfin.Data.Enums;
+using Jellyfin.Database.Implementations.Enums;
namespace Jellyfin.Data
{
diff --git a/Jellyfin.Data/UserEntityExtensions.cs b/Jellyfin.Data/UserEntityExtensions.cs
index 8d84a6b6e..8bf82265c 100644
--- a/Jellyfin.Data/UserEntityExtensions.cs
+++ b/Jellyfin.Data/UserEntityExtensions.cs
@@ -2,8 +2,8 @@ using System;
using System.ComponentModel;
using System.Linq;
using Jellyfin.Data.Entities;
-using Jellyfin.Data.Enums;
-using Jellyfin.Data.Interfaces;
+using Jellyfin.Database.Implementations.Enums;
+using Jellyfin.Database.Implementations.Interfaces;
namespace Jellyfin.Data;