mirror of
https://github.com/sphildreth/roadie
synced 2024-11-30 08:00:21 +00:00
19 lines
No EOL
602 B
C#
19 lines
No EOL
602 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 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; }
|
|
public string TrackTime { get; set; }
|
|
}
|
|
} |