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

12 lines
219 B
C#
Raw Normal View History

2014-01-22 05:22:09 +00:00
using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Tv
{
public class Ratings : IEmbeddedDocument
{
2015-01-09 01:43:51 +00:00
public int Votes { get; set; }
public decimal Value { get; set; }
2014-01-22 05:22:09 +00:00
}
}