2018-11-06 02:41:51 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Roadie.Library.Models.Statistics
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A generic grouping of releases information for Playlists, Collections or Library
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class ReleaseGroupingStatistics
|
|
|
|
|
{
|
2018-12-09 20:31:02 +00:00
|
|
|
|
public int? ArtistCount { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Formatted sum of track file sizes
|
|
|
|
|
/// </summary>
|
2018-11-06 02:41:51 +00:00
|
|
|
|
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; }
|
2018-12-09 20:31:02 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sum of duration of tracks
|
|
|
|
|
/// </summary>
|
2018-12-09 17:58:31 +00:00
|
|
|
|
public string TrackSize { get; set; }
|
2018-11-06 02:41:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|