mirror of
https://github.com/sphildreth/roadie
synced 2024-12-02 08:59:17 +00:00
17 lines
No EOL
524 B
C#
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; }
|
|
}
|
|
} |