roadie/Roadie.Api.Library/Models/Statistics/ReleaseStatistics.cs
2018-12-26 13:39:13 -06:00

15 lines
No EOL
415 B
C#

using System;
namespace Roadie.Library.Models.Statistics
{
[Serializable]
public class ReleaseStatistics
{
public int? MediaCount { get; set; }
public int? MissingTrackCount { get; set; }
public int? TrackCount { get; set; }
public int? TrackPlayedCount { get; set; }
public string TrackSize { get; set; }
public string TrackTime { get; set; }
}
}