feat: add search/album/genre filtering and /albums + /genres browse pages
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user