Lidarr/src/NzbDrone.Core/Music/Ratings.cs

11 lines
208 B
C#

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