namespace DeepDrftModels.DTOs; /// One distinct genre with its track count. Backs the /genres browse list. public class GenreSummaryDto { public required string Genre { get; set; } public int TrackCount { get; set; } }