2018-11-05 20:41:51 -06:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Roadie.Library.Models.Statistics
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class CollectionStatistics
|
|
|
|
|
{
|
|
|
|
|
public string FileSize { get; set; }
|
2018-11-06 15:55:31 -06:00
|
|
|
|
public int? MissingTrackCount { get; set; }
|
2018-11-05 20:41:51 -06:00
|
|
|
|
public int? ReleaseCount { get; set; }
|
2018-11-06 15:55:31 -06:00
|
|
|
|
public int? ReleaseMediaCount { get; set; }
|
2018-11-05 20:41:51 -06:00
|
|
|
|
public string ReleaseTrackTime { get; set; }
|
|
|
|
|
public int? TrackCount { get; set; }
|
2018-11-06 15:55:31 -06:00
|
|
|
|
public int? TrackPlayedCount { get; set; }
|
|
|
|
|
public string TrackTime { get; set; }
|
2018-11-05 20:41:51 -06:00
|
|
|
|
}
|
|
|
|
|
}
|