You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
446 B
14 lines
446 B
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; }
|
|
}
|
|
} |