From b09a41ad1f05664a6099734cb44e068f993a8e93 Mon Sep 17 00:00:00 2001
From: JPVenson <6794763+JPVenson@users.noreply.github.com>
Date: Wed, 9 Oct 2024 10:36:08 +0000
Subject: WIP porting new Repository structure
---
MediaBrowser.Controller/Library/IMusicManager.cs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
(limited to 'MediaBrowser.Controller/Library/IMusicManager.cs')
diff --git a/MediaBrowser.Controller/Library/IMusicManager.cs b/MediaBrowser.Controller/Library/IMusicManager.cs
index 93073cc79..7ba8fc20c 100644
--- a/MediaBrowser.Controller/Library/IMusicManager.cs
+++ b/MediaBrowser.Controller/Library/IMusicManager.cs
@@ -17,7 +17,7 @@ namespace MediaBrowser.Controller.Library
/// The user to use.
/// The options to use.
/// List of items.
- List GetInstantMixFromItem(BaseItem item, User? user, DtoOptions dtoOptions);
+ IReadOnlyList GetInstantMixFromItem(BaseItem item, User? user, DtoOptions dtoOptions);
///
/// Gets the instant mix from artist.
@@ -26,7 +26,7 @@ namespace MediaBrowser.Controller.Library
/// The user to use.
/// The options to use.
/// List of items.
- List GetInstantMixFromArtist(MusicArtist artist, User? user, DtoOptions dtoOptions);
+ IReadOnlyList GetInstantMixFromArtist(MusicArtist artist, User? user, DtoOptions dtoOptions);
///
/// Gets the instant mix from genre.
@@ -35,6 +35,6 @@ namespace MediaBrowser.Controller.Library
/// The user to use.
/// The options to use.
/// List of items.
- List GetInstantMixFromGenres(IEnumerable genres, User? user, DtoOptions dtoOptions);
+ IReadOnlyList GetInstantMixFromGenres(IEnumerable genres, User? user, DtoOptions dtoOptions);
}
}
--
cgit v1.2.3