diff options
| author | JPVenson <github@jpb.email> | 2024-10-10 19:27:26 +0000 |
|---|---|---|
| committer | JPVenson <github@jpb.email> | 2024-10-10 19:27:26 +0000 |
| commit | ae641b7f3af5117612b3917d93013d26191a71d8 (patch) | |
| tree | 0e7651f227f4d524fe7a4f78f996d2218f6cbcc4 /MediaBrowser.Controller/Persistence | |
| parent | 9c5599f81bed8d0531a8c0856072a5739e3f8f87 (diff) | |
Applied review comments
Diffstat (limited to 'MediaBrowser.Controller/Persistence')
| -rw-r--r-- | MediaBrowser.Controller/Persistence/IItemTypeLookup.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Persistence/IItemTypeLookup.cs b/MediaBrowser.Controller/Persistence/IItemTypeLookup.cs index 6ad8380d7c..343b95e9ee 100644 --- a/MediaBrowser.Controller/Persistence/IItemTypeLookup.cs +++ b/MediaBrowser.Controller/Persistence/IItemTypeLookup.cs @@ -51,7 +51,12 @@ public interface IItemTypeLookup public IReadOnlyList<BaseItemKind> ArtistsTypes { get; } /// <summary> + /// Gets all serialisation target types for music related kinds. + /// </summary> + IReadOnlyList<string> MusicGenreTypes { get; } + + /// <summary> /// Gets mapping for all BaseItemKinds and their expected serialization target. /// </summary> - public IDictionary<BaseItemKind, string?> BaseItemKindNames { get; } + public IDictionary<BaseItemKind, string> BaseItemKindNames { get; } } |
