mirror of
https://github.com/sphildreth/roadie
synced 2024-11-22 20:23:16 +00:00
29 lines
No EOL
837 B
C#
29 lines
No EOL
837 B
C#
using System;
|
|
|
|
namespace Roadie.Library.Models.Statistics
|
|
{
|
|
/// <summary>
|
|
/// A generic grouping of releases information for Playlists, Collections or Library
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ReleaseGroupingStatistics
|
|
{
|
|
public int? ArtistCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// Formatted sum of track file sizes
|
|
/// </summary>
|
|
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; }
|
|
|
|
/// <summary>
|
|
/// Sum of duration of tracks
|
|
/// </summary>
|
|
public string TrackSize { get; set; }
|
|
}
|
|
} |