diff options
| author | Cody Robibero <cody@robibe.ro> | 2025-08-12 20:20:54 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-12 20:20:54 -0600 |
| commit | bd94ca30711e551c834d10c5c3de6fb6a7795bc7 (patch) | |
| tree | 52040cf9cb2b083cf923dd093b94d7c97908a327 /MediaBrowser.Controller/Persistence/IItemRepository.cs | |
| parent | 869b4f8bbf3d27c95e3a012b1f9d7d1cb590fcfc (diff) | |
| parent | beca405ad4c771f9cfdd5b410b4a4ba9f1c2d6c8 (diff) | |
Merge pull request #14634 from crobibero/itemname-counts
Diffstat (limited to 'MediaBrowser.Controller/Persistence/IItemRepository.cs')
| -rw-r--r-- | MediaBrowser.Controller/Persistence/IItemRepository.cs | 2 |
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); |
