roadie/Roadie.Api.Library/Models/Statistics/ReleaseStatistics.cs

15 lines
415 B
C#
Raw Normal View History

2018-11-06 02:41:51 +00:00
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; }
}
}