roadie/RoadieLibrary/Models/Statistics/ReleaseGroupingStatistics.cs
Steven Hildreth e8bac6e3bf WIP
2018-11-05 20:41:51 -06:00

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; }
}
}