roadie/RoadieLibrary/Models/Statistics/CollectionStatistics.cs
Steven Hildreth 71d57b6925 WIP
2018-11-06 15:55:31 -06:00

17 lines
No EOL
524 B
C#

using System;
namespace Roadie.Library.Models.Statistics
{
[Serializable]
public class CollectionStatistics
{
public string FileSize { get; set; }
public int? MissingTrackCount { get; set; }
public int? ReleaseCount { get; set; }
public int? ReleaseMediaCount { get; set; }
public string ReleaseTrackTime { get; set; }
public int? TrackCount { get; set; }
public int? TrackPlayedCount { get; set; }
public string TrackTime { get; set; }
}
}