using System.Collections.Generic; namespace Selector.SignalR; public interface IRankResult { IEnumerable TrackEntries { get; set; } IEnumerable AlbumEntries { get; set; } IEnumerable ArtistEntries { get; set; } IEnumerable ResampledSeries { get; set; } int TotalCount { get; set; } }