mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-05 15:15:59 +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; }
|
||
|
}
|
||
|
}
|