aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/IIntroProvider.cs
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2025-03-25 16:45:00 +0100
committerJPVenson <github@jpb.email>2025-03-25 16:45:00 +0100
commit42bdb22bfb690a6af37d70f12844881d884927b1 (patch)
treedda036104216854afc2dc83ebc59bd76fcd50454 /MediaBrowser.Controller/Library/IIntroProvider.cs
parent160020c551f71441fec093f5a6b2ca2650d9a74d (diff)
Fixed namespaces
Diffstat (limited to 'MediaBrowser.Controller/Library/IIntroProvider.cs')
-rw-r--r--MediaBrowser.Controller/Library/IIntroProvider.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Library/IIntroProvider.cs b/MediaBrowser.Controller/Library/IIntroProvider.cs
index 4a9721acb..860e948af 100644
--- a/MediaBrowser.Controller/Library/IIntroProvider.cs
+++ b/MediaBrowser.Controller/Library/IIntroProvider.cs
@@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Threading.Tasks;
+using Jellyfin.Database.Implementations.Entities;
using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.Library
@@ -23,6 +24,6 @@ namespace MediaBrowser.Controller.Library
/// <param name="item">The item.</param>
/// <param name="user">The user.</param>
/// <returns>IEnumerable{System.String}.</returns>
- Task<IEnumerable<IntroInfo>> GetIntros(BaseItem item, Jellyfin.Data.Entities.User user);
+ Task<IEnumerable<IntroInfo>> GetIntros(BaseItem item, User user);
}
}