roadie/Roadie.Api.Library/Models/Statistics/TrackStatistics.cs
2019-07-03 11:21:29 -05:00

14 lines
No EOL
365 B
C#

using System;
namespace Roadie.Library.Models.Statistics
{
[Serializable]
public class TrackStatistics
{
public int? DislikedCount { get; set; }
public int? FavoriteCount { get; set; }
public string FileSizeFormatted { get; set; }
public int? PlayedCount { get; set; }
public string Time { get; set; }
}
}