mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
14 lines
308 B
C#
14 lines
308 B
C#
using System;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Tv
|
|
{
|
|
public class Ratings : IEmbeddedDocument
|
|
{
|
|
public Decimal Percentage { get; set; }
|
|
public Int32 Votes { get; set; }
|
|
public Int32 Loved { get; set; }
|
|
public Int32 Hated { get; set; }
|
|
}
|
|
}
|