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

11 lines
205 B
C#
Raw Normal View History

2016-12-23 21:45:24 +00:00
using NzbDrone.Core.Datastore;
2014-01-22 05:22:09 +00:00
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
}
}