mirror of
https://github.com/sphildreth/roadie
synced 2024-11-26 14:10:21 +00:00
15 lines
415 B
C#
15 lines
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; }
|
|||
|
}
|
|||
|
}
|