using System;
namespace Roadie.Library.Models.Statistics
{
///
/// A generic grouping of releases information for Playlists, Collections or Library
///
[Serializable]
public class ReleaseGroupingStatistics
{
public int? ArtistCount { get; set; }
///
/// Formatted sum of track file sizes
///
public string FileSize { get; set; }
public int? MissingTrackCount { get; set; }
public int? ReleaseCount { get; set; }
public int? ReleaseMediaCount { get; set; }
public int? TrackCount { get; set; }
public int? TrackPlayedCount { get; set; }
///
/// Sum of duration of tracks
///
public string TrackSize { get; set; }
}
}