aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasMetascore.cs
blob: a3445bbba5b9c1eb7b768572278df1622dadf516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace MediaBrowser.Controller.Entities
{
    /// <summary>
    /// Interface IHasMetascore
    /// </summary>
    public interface IHasMetascore
    {
        /// <summary>
        /// Gets or sets the metascore.
        /// </summary>
        /// <value>The metascore.</value>
        float? Metascore { get; set; }
    }
}