feat: add search/album/genre filtering and /albums + /genres browse pages

This commit is contained in:
daniel-c-harvey
2026-06-10 10:54:56 -04:00
parent 1071ba7374
commit 5cae83b9ed
24 changed files with 940 additions and 15 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace DeepDrftModels.DTOs;
/// <summary>One distinct genre with its track count. Backs the /genres browse list.</summary>
public class GenreSummaryDto
{
public required string Genre { get; set; }
public int TrackCount { get; set; }
}