mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -04:00
13 lines
273 B
C#
13 lines
273 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.MetadataSource.Trakt
|
|
{
|
|
public class Ratings
|
|
{
|
|
public Int32 percentage { get; set; }
|
|
public Int32 votes { get; set; }
|
|
public Int32 loved { get; set; }
|
|
public Int32 hated { get; set; }
|
|
}
|
|
}
|