9 lines
247 B
C#
9 lines
247 B
C#
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; }
|
|
}
|