2022-10-10 11:44:47 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Selector.Web;
|
|
|
|
|
|
|
|
|
|
public class RankResult
|
|
|
|
|
{
|
|
|
|
|
public IEnumerable<ChartEntry> TrackEntries { get; set; }
|
|
|
|
|
public IEnumerable<ChartEntry> AlbumEntries { get; set; }
|
|
|
|
|
public IEnumerable<ChartEntry> ArtistEntries { get; set; }
|
2022-10-10 22:29:47 +01:00
|
|
|
|
|
|
|
|
|
public IEnumerable<CountSample> ResampledSeries { get; set; }
|
|
|
|
|
|
|
|
|
|
public int TotalCount { get; set; }
|
2022-10-10 11:44:47 +01:00
|
|
|
|
}
|
|
|
|
|
|