mirror of
https://github.com/sphildreth/roadie
synced 2024-11-22 20:23:16 +00:00
15 lines
No EOL
415 B
C#
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; }
|
|
}
|
|
} |