mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
14 lines
446 B
C#
14 lines
446 B
C#
namespace NzbDrone.Core.MetadataSource.Trakt
|
|
{
|
|
public class Stats
|
|
{
|
|
public int watchers { get; set; }
|
|
public int plays { get; set; }
|
|
public int scrobbles { get; set; }
|
|
public int scrobbles_unique { get; set; }
|
|
public int checkins { get; set; }
|
|
public int checkins_unique { get; set; }
|
|
public int collection { get; set; }
|
|
public int collection_unique { get; set; }
|
|
}
|
|
} |