Sonarr/src/NzbDrone.Core/Tv/Ratings.cs

11 lines
205 B
C#

using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Tv
{
public class Ratings : IEmbeddedDocument
{
public int Votes { get; set; }
public decimal Value { get; set; }
}
}