mirror of
https://github.com/sphildreth/roadie
synced 2024-11-26 06:00:23 +00:00
14 lines
No EOL
365 B
C#
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; }
|
|
}
|
|
} |