aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Persistence/IItemRepository.cs
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2025-08-12 20:20:54 -0600
committerGitHub <noreply@github.com>2025-08-12 20:20:54 -0600
commitbd94ca30711e551c834d10c5c3de6fb6a7795bc7 (patch)
tree52040cf9cb2b083cf923dd093b94d7c97908a327 /MediaBrowser.Controller/Persistence/IItemRepository.cs
parent869b4f8bbf3d27c95e3a012b1f9d7d1cb590fcfc (diff)
parentbeca405ad4c771f9cfdd5b410b4a4ba9f1c2d6c8 (diff)
Merge pull request #14634 from crobibero/itemname-counts
Diffstat (limited to 'MediaBrowser.Controller/Persistence/IItemRepository.cs')
-rw-r--r--MediaBrowser.Controller/Persistence/IItemRepository.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Persistence/IItemRepository.cs b/MediaBrowser.Controller/Persistence/IItemRepository.cs
index f4ac0ece4..a0dabbac6 100644
--- a/MediaBrowser.Controller/Persistence/IItemRepository.cs
+++ b/MediaBrowser.Controller/Persistence/IItemRepository.cs
@@ -84,6 +84,8 @@ public interface IItemRepository
int GetCount(InternalItemsQuery filter);
+ ItemCounts GetItemCounts(InternalItemsQuery filter);
+
QueryResult<(BaseItem Item, ItemCounts ItemCounts)> GetGenres(InternalItemsQuery filter);
QueryResult<(BaseItem Item, ItemCounts ItemCounts)> GetMusicGenres(InternalItemsQuery filter);