mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
14 lines
306 B
C#
14 lines
306 B
C#
using System;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Tv
|
|
{
|
|
public class Ratings : IEmbeddedDocument
|
|
{
|
|
public Int32 Percentage { get; set; }
|
|
public Int32 Votes { get; set; }
|
|
public Int32 Loved { get; set; }
|
|
public Int32 Hated { get; set; }
|
|
}
|
|
}
|